-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
81 lines (66 loc) · 2.49 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/usr/bin/env python
# How to build source distribution
# - python setup.py sdist --format bztar
# - python setup.py sdist --format gztar
# - python setup.py sdist --format zip
# - python setup.py bdist_wheel
import os
from setuptools import setup, find_packages
MAJOR = 1
MINOR = 3
MICRO = 0
VERSION = "{0}.{1}.{2}".format(MAJOR, MINOR, MICRO)
def write_version_file(fn=None):
if fn is None:
fn = os.path.join(
os.path.dirname(os.path.abspath(__file__)),
os.path.join("exphewas", "version.py"),
)
content = ("\n# THIS FILE WAS GENERATED AUTOMATICALLY\n"
'exphewas_version = "{version}"\n')
a = open(fn, "w")
try:
a.write(content.format(version=VERSION))
finally:
a.close()
def setup_package():
# Saving the version into a file
write_version_file()
setup(
name="exphewas",
version=VERSION,
description="Browser and tools for the gene-based PheWAS analysis.",
url="https://github.com/legaultmarc/exphewas",
license="MIT",
zip_safe=False,
install_requires=["sqlalchemy >= 1.3.10", "Flask >= 1.1.1",
"Flask-Cors >= 3.0.8", "psycopg2-binary >= 2.8.4",
"sqlalchemy-datatables >= 2.0.1",
"pandas >= 0.25.3"],
packages=find_packages(),
package_data={
"exphewas.backend": ["templates/*", "static/*", "static/docs/*",
"data/*"],
"exphewas.db.scripts": ["data/*"],
},
classifiers=["Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: MIT",
"Operating System :: Unix",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft",
"Programming Language :: Python",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: Bio-Informatics"],
keywords="bioinformatics genetics statistics",
entry_points={
"console_scripts": [
"exphewas-db=exphewas.db.scripts.cli:main"
],
},
)
if __name__ == "__main__":
setup_package()