We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3920932 commit e059f1dCopy full SHA for e059f1d
setup.py
@@ -0,0 +1,25 @@
1
+from setuptools import setup
2
+
3
+setup(
4
+ name='sctools',
5
+ version='0.0.0',
6
+ description='Single-cell utilities',
7
+ url='https://github.com/ktroule/sctools',
8
+ author='Kevin',
9
+ author_email='',
10
+ license='',
11
+ packages=['sctools'],
12
+ install_requires=[],
13
14
+ classifiers=[
15
+ 'Development Status :: 1 - Planning',
16
+ 'Intended Audience :: Science/Research',
17
+ 'License :: OSI Approved :: BSD License',
18
+ 'Operating System :: POSIX :: Linux',
19
+ 'Programming Language :: Python :: 2',
20
+ 'Programming Language :: Python :: 2.7',
21
+ 'Programming Language :: Python :: 3',
22
+ 'Programming Language :: Python :: 3.4',
23
+ 'Programming Language :: Python :: 3.5',
24
+ ],
25
+)
0 commit comments