-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (34 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
import setuptools
# aa = setuptools.find_packages()
# print(aa)
# aa = setuptools.find_packages(where="scripts")
# print(aa)
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setuptools.setup(
name = 'CLEMENTDNA',
version = '1.0.11',
long_description = long_description,
long_description_content_type='text/markdown',
description = 'Genomic decomposition and reconstruction of non-tumor diploid subclones',
author = 'Young-soo Chung, M.D.',
author_email = '[email protected]',
url = 'https://github.com/Yonsei-TGIL/CLEMENT',
download_url = 'https://github.com/Yonsei-TGIL/CLEMENT.git',
install_requires = ['matplotlib>=3.5.2','seaborn>=0.11.2', 'numpy>=1.21.5', 'pandas>=1.3.4', 'scikit-learn>=1.0.2', 'scipy>=1.7.3', 'palettable>=3.3.0' ],
keywords = ['CLEMENT', 'genomic decomposition'],
python_requires = '>=3.6',
packages = setuptools.find_packages(),
license='GPL v3',
license_files="LICENSE.txt",
classifiers = [
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent'
],
entry_points={
'console_scripts': [
'CLEMENT= CLEMENT.CLEMENT:main',
]
}
)