-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (28 loc) · 989 Bytes
/
setup.py
File metadata and controls
35 lines (28 loc) · 989 Bytes
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
"""Install setup."""
import setuptools
setuptools.setup(
name="veoibd_misc",
version="0.0.1",
url="git@github.com:ScottSnapperLab/veoibd_misc.git",
author="Gus Dunn",
author_email="w.gus.dunn@gmail.com",
description="A place for random figure creation supporting documentation of the VEOIBD consortium interactions.",
# long_description=open('README.rst').read(),
packages=setuptools.find_packages('src/python'),
install_requires=["click",
"munch",
"seaborn",
"pandas",
"numexpr",
"numpy",
"xlrd",
"xlwt",
],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)