|
1 | 1 | import os |
2 | 2 | import re |
3 | 3 | from setuptools import setup, find_packages |
| 4 | + |
4 | 5 | with open("deTiN/__about__.py") as reader: |
5 | 6 | __version__ = re.search( |
6 | | - r'__version__ ?= ?[\'\"]([\w.]+)[\'\"]', |
7 | | - reader.read() |
| 7 | + r"__version__ ?= ?[\'\"]([\w.]+)[\'\"]", reader.read() |
8 | 8 | ).group(1) |
9 | 9 |
|
10 | 10 |
|
11 | 11 | # Setup information |
12 | 12 | setup( |
13 | | - name = 'deTiN', |
14 | | - version = __version__, |
15 | | - packages = find_packages(), |
16 | | - description = 'Somatic analysis toolkit for dealing with tumor in normal contamination', |
17 | | - author = 'Broad Institute - Cancer Genome Computational Analysis', |
18 | | - author_email = 'amaro@broadinstitute.org', |
19 | | - long_description = 'see publication', |
20 | | - entry_points = { |
21 | | - 'console_scripts': [ |
22 | | - 'deTiN = deTiN.deTiN:main' |
23 | | - ] |
24 | | - }, |
25 | | - install_requires = [ |
26 | | - 'numpy', |
27 | | - 'matplotlib', |
28 | | - 'pandas', |
29 | | - 'scipy', |
30 | | - 'sklearn', |
31 | | - 'argparse' |
| 13 | + name="deTiN", |
| 14 | + version=__version__, |
| 15 | + packages=find_packages(), |
| 16 | + description="Somatic analysis toolkit for dealing with tumor in normal contamination", |
| 17 | + author="Broad Institute - Cancer Genome Computational Analysis", |
| 18 | + author_email="amaro@broadinstitute.org", |
| 19 | + long_description="see publication", |
| 20 | + entry_points={"console_scripts": ["deTiN = deTiN.deTiN:main"]}, |
| 21 | + install_requires=[ |
| 22 | + "numpy", |
| 23 | + "matplotlib==3.1.3", |
| 24 | + "pandas==1.0.0", |
| 25 | + "scipy", |
| 26 | + "sklearn", |
| 27 | + "argparse", |
| 28 | + "random2", |
32 | 29 | ], |
33 | | - classifiers = [ |
| 30 | + classifiers=[ |
34 | 31 | "Programming Language :: Python :: 2", |
35 | 32 | "Intended Audience :: Science/Research", |
36 | | - "Topic :: Scientific/Engineering :: Bio-Informatics" |
| 33 | + "Topic :: Scientific/Engineering :: Bio-Informatics", |
37 | 34 | ], |
38 | 35 | ) |
0 commit comments