forked from ConorMesser/cnv_suite
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
50 lines (47 loc) · 1.62 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
48
49
50
from setuptools import setup, find_packages
import sys
ver_info = sys.version_info
if ver_info < (3,7,0):
raise RuntimeError("CNV_Suite requires at least python 3.7")
# read the contents of your README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='cnv_suite',
version="0.2.0",
packages=['cnv_suite.compare', 'cnv_suite.simulate', 'cnv_suite.utils', 'cnv_suite.visualize', 'cnv_suite'],
entry_points={
'console_scripts': [
'simulate = cnv_suite.simulate.cnv_profile:main',
'visualize = cnv_suite.visualize.plot_cnv_profile:main',
'compare = cnv_suite.compare.__main__:main'
]
},
description='Copy Number tools for visualization, simulation, and comparison.',
author='Conor Messer',
author_email='[email protected]',
long_description = long_description,
long_description_content_type = 'text/markdown',
install_requires=[
'pandas',
'numpy>=1.16.0',
'scipy',
'matplotlib>=3.1.0',
'plotly>=5.12.0, <6.0.0', # unknown if there will be breaking changes in a future major version of plotly
'intervaltree',
'natsort',
'pandarallel',
'tqdm',
'kaleido',
'nbformat',
],
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: BSD License"
],
license="BSD3"
)