-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
executable file
·41 lines (37 loc) · 1.32 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
from setuptools import find_packages, setup
def read(path):
with open(path, 'r') as f:
return f.read()
setup(
name='dynast-release',
version='1.0.1',
url='https://github.com/aristoteleo/dynast-release',
author='Kyung Hoi (Joseph) Min',
author_email='[email protected]',
description='Complete splicing and labeling quantification from metabolic labeling scRNA-seq',
long_description=read('README.md'),
long_description_content_type='text/markdown',
keywords='',
python_requires='>=3.7',
license='MIT',
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': ['dynast=dynast.main:main'],
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Utilities',
],
)