-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (29 loc) · 1.2 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
from __future__ import absolute_import, division, print_function, unicode_literals
import sys
import os
from setuptools import setup, find_packages
if not sys.version_info[0] in [2,3]:
print('Sorry, wqxsde not supported in your Python version')
print(' Supported versions: 2 and 3')
print(' Your version of Python: {}'.format(sys.version_info[0]))
sys.exit(1) # return non-zero value for failure
long_description = 'A tool for to expedite the upload of chemistry data'
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except:
pass
setup(name='wqxsde',
description = 'Niche package to manage chemistry data flow to and from the EPA',
long_description = long_description,
version = '0.0.1',
author = 'Paul Inkenbrandt',
author_email = '[email protected]',
url = 'https://github.com/inkenbrandt/wqxsde',
license = 'LICENSE.txt',
install_requires=["Pandas >= 0.22.0",
"Numpy >= 0.6.0",
"Matplotlib >= 1.1",
"xlrd >= 0.5.4",
"openpyxl >= 2.4.0"],
packages = find_packages(exclude=['contrib', 'docs', 'tests*']))