-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (33 loc) · 1.14 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
from setuptools import setup
from setuptools import find_packages
version_py = "DLR_ICF/_version.py"
exec(open(version_py).read())
setup(
name="DLR_ICF", # Replace with your own username
version=__version__,
author="Benxia Hu",
author_email="[email protected]",
description="DLR and ICF analysis",
long_description="analyze DLR and ICF",
url="https://pypi.org/project/DLR_ICF/",
entry_points = {
"console_scripts": ['DLR_ICF_main = DLR_ICF.DLR_ICF_main:main',
'DLR_ICF_comparison = DLR_ICF.DLR_ICF_comparison:main',
'DLR_ICF_separation = DLR_ICF.DLR_ICF_separation:main',
'ICF_chromatin = DLR_ICF.ICF_chromatin:main',
'DLR_ICF_gene = DLR_ICF.DLR_ICF_gene:main',]
},
python_requires = '>=3.6',
packages = ['DLR_ICF'],
install_requires = [
'numpy',
'pandas',
'argparse',
],
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
zip_safe = False,
)