-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
47 lines (44 loc) · 1.79 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
import os
from setuptools import setup, find_packages
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read()
setup(
name='hgc',
version='0.3.2',
packages=find_packages(exclude=['tests*']),
license='MIT',
description='A python package for correction, validation and analysis of ground water quality samples',
long_description=read('README.rst'),
long_description_content_type="text/x-rst",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Other Audience',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering :: Hydrology',
],
python_requires='>=3.8',
project_urls={
'Source': 'https://github.com/KWR-Water/hgc',
'Documentation': 'http://hgc.readthedocs.io/en/latest/',
'Tracker': 'https://github.com/KWR-Water/hgc/issues',
'Help': 'https://github.com/KWR-Water/hgc/issues'
},
install_requires=[
'pandas>=0.23',
'openpyxl>=3.0.0',
'xlrd>=1.0.0',
'phreeqpython>=1.3.2', # TODO: possibly this can be made an optional dependency but we need to figure out how to do this properly
'scipy', # TODO: temporarily require SciPy. This is actually a dep of phreeqpython, which however, doesn't correctly acquire it
# 'fuzzywuzzy>=1.0',
],
include_package_data=True,
url='https://github.com/KWR-Water/hgc',
author='KWR Water Research Institute',
author_email='[email protected], [email protected]',
)