forked from BritishGeologicalSurvey/disolv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (28 loc) · 1.01 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
"""setup.py
Setup script for the disolv package
"""
from setuptools import setup
LONG_DESCRIPTION = """
# Disolv
> Modelling dilution tests.
See [https://github.com/sarcol-bgs/disolv/](https://github.com/sarcol-bgs/disolv/) for details.
"""
setup(name='disolv',
version='1.6.1',
license='GNU LGPLv3',
description='Modelling dilution tests',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author='Sarah Collins',
author_email='[email protected]',
url='https://github.com/sarcol-bgs/disolv/',
download_url='https://github.com/sarcol-bgs/disolv/archive/v1.6.1.tar.gz',
py_modules=['disolv', 'SolveEquation'],
install_requires=['numpy', 'scipy', 'matplotlib', 'pandas'],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2.7",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
],
)