-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
36 lines (33 loc) · 1.31 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
from setuptools import setup
with open('README.md', 'r', encoding='utf8') as f:
long_description = f.read()
__version__ = 'unknown'
exec(open('ctdna/version.py').read())
setup(
name='ctdna', # package name
# packages=find_packages(),
packages=['ctdna', 'tests'],
version=__version__,
description='ctdna computes the expected tumor detection size at a given sampling frequency.',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=['numpy', 'scipy', 'pandas', 'matplotlib', 'rll'],
setup_requires=['pytest-runner', 'flake8'],
tests_require=['pytest', 'pytest-cov'],
extras_require={'plotting': ['matplotlib', 'seaborn', 'rll', 'jupyter']},
url='https://github.com/reiterlab/ctdna',
author='Translational Cancer Evolution Laboratory @Stanford',
author_email='johannes.reiter@stanford.edu',
license='GNUv3',
keywords=['ctdna', 'cancer', 'cancer early detection', 'cancer screening', 'treatment monitoring'],
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3.6',
],
test_suite='tests',
entry_points={
'console_scripts': [
'ctdna = ctdna.ctdna:main'
]
}
)