-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
executable file
·47 lines (42 loc) · 1.54 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from setuptools import find_packages, setup
def read(path):
with open(path, 'r') as f:
return f.read()
long_description = read('README.md')
setup(
name='kb_python',
version='0.29.1',
url='https://github.com/pachterlab/kb_python',
author='Kyung Hoi (Joseph) Min',
author_email='[email protected]',
maintainer='Pachter Lab',
maintainer_email='[email protected]',
description='Python wrapper around kallisto | bustools for scRNA-seq analysis', # noqa
long_description=long_description,
long_description_content_type='text/markdown',
keywords='kallisto bustools',
python_requires='>=3.8',
license='BSD',
packages=find_packages(exclude=('tests', 'tests.*', 'docs')),
zip_safe=False,
include_package_data=True,
install_requires=read('requirements.txt').strip().split('\n'),
entry_points={
'console_scripts': ['kb=kb_python.main:main'],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Utilities',
],
)