-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
59 lines (56 loc) · 1.9 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
51
52
53
54
55
56
57
58
59
import os
from setuptools import setup, find_packages
DESCRIPTION = "Toolkit for ensemble TR genotyping"
LONG_DESCRIPTION = DESCRIPTION
NAME = "EnsembleTR"
AUTHOR = "Melissa Gymrek"
AUTHOR_EMAIL = "[email protected]"
MAINTAINER = "Melissa Gymrek"
MAINTAINER_EMAIL = "[email protected]"
DOWNLOAD_URL = 'http://github.com/gymreklab/TRTools'
LICENSE = 'MIT'
# version-keeping code based on pybedtools
curdir = os.path.abspath(os.path.dirname(__file__))
MAJ = 1
MIN = 0
REV = 0
VERSION = '%d.%d.%d' % (MAJ, MIN, REV)
with open(os.path.join(curdir, 'ensembletr/version.py'), 'w') as fout:
fout.write(
"\n".join(["",
"# THIS FILE IS GENERATED FROM SETUP.PY",
"version = '{version}'",
"__version__ = version"]).format(version=VERSION)
)
setup(name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
url=DOWNLOAD_URL,
download_url=DOWNLOAD_URL,
license=LICENSE,
python_requires='>=3.8',
packages=find_packages(),
include_package_data=True,
license_file="LICENSE.txt",
entry_points={
'console_scripts': [
'EnsembleTR=ensembletr.main:run'
],
},
install_requires=['cyvcf2',
'networkx',
'numpy',
'pyfaidx',
'trtools'],
classifiers=['Development Status :: 4 - Beta',\
'Programming Language :: Python :: 3.5',\
'License :: OSI Approved :: MIT License',\
'Operating System :: OS Independent',\
'Intended Audience :: Science/Research',\
'Topic :: Scientific/Engineering :: Bio-Informatics']
)