-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (50 loc) · 1.69 KB
/
setup.py
File metadata and controls
57 lines (50 loc) · 1.69 KB
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
"""Setup script for omaat package.
"""
DISTNAME = 'omaat'
DESCRIPTION = 'OpenMSI Arrayed Analysis Tools'
LONG_DESCRIPTION = open('README.md', 'rb').read().decode('utf-8')
MAINTAINER = 'Ben Bowen'
MAINTAINER_EMAIL = 'bpbowen@lbl.gov'
URL = 'http://github.com/biorack/omaat'
LICENSE = 'MIT'
REQUIRES = ["numpy", "future", "pandas", "requests", "scipy", "jupyter", "matplotlib","ipywidgets"]
# , "buitins", "posixpath",
# "scipy", "matplotlib", "getpass", "requests",
# "ipython", "future", "ipywidgets"]
CLASSIFIERS = """\
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
Intended Audience :: Science/Research
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3.4
Topic :: Scientific/Engineering
Topic :: Software Development
"""
#ADD Versioning
# with open('omaat/__init__.py') as fid:
# for line in fid:
# if line.startswith('__version__'):
# version = line.strip().split()[-1][1:-1]
# break
from setuptools import setup, find_packages
if __name__ == "__main__":
setup(
name=DISTNAME,
# version=version,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
url=URL,
download_url=URL,
# license=LICENSE,
platforms=["Any"],
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
classifiers=list(filter(None, CLASSIFIERS.split('\n'))),
packages=find_packages(exclude=['doc']),
include_package_data=True,
zip_safe=False, # the package can run out of an .egg file
install_requires=REQUIRES,
requires=REQUIRES,
)