forked from pgxcentre/manhattan_generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (31 loc) · 1.04 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
#!/usr/bin/env python
from setuptools import setup
VERSION = "1.7.4"
def setup_package():
setup(
name="manhattan_maker",
version=VERSION,
description="Creation of beautiful Manhattan plots",
author="Louis-Philippe Lemieux Perreault",
author_email="[email protected]",
maintainer="Antton Lamarca",
maintainer_email="[email protected]",
url="https://github.com/AnttonLA/manhattan_maker",
license="CC BY-NC 4.0",
entry_points={
"console_scripts": [
"manhattan_maker=manhattan_maker:safe_main",
],
},
py_modules=["manhattan_maker"],
install_requires=["matplotlib >=1.3.1", "numpy >= 1.8.0",
"pandas >= 0.17.0"],
classifiers=[
"Operating System :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
],
)
return
if __name__ == "__main__":
setup_package()