-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (39 loc) · 1.35 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
from setuptools import setup, find_packages
try:
from blazy import __version__
except:
__version__ = "version_missing"
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='blazy',
version=__version__,
description='Tools for solution speciation calculations with PHREEQC',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/oscarbranson/blazy',
author='Oscar Branson',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Programming Language :: Python :: 3',
],
python_requires='>3.6',
install_requires=['numpy',
'pandas',
'matplotlib',
'uncertainties',
'scikit-learn',
'scipy',
'Ipython',
'configparser',
'tqdm',
'phreeqpy'
],
package_data={
'latools': ['resources/*',
'resources/database/*'],
},
zip_safe=True)