Skip to content

Commit e059f1d

Browse files
author
ktroule
committed
Add setup.py required for pip installation
1 parent 3920932 commit e059f1d

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

setup.py

+25
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)