-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
57 lines (52 loc) · 1.65 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
48
49
50
51
52
53
54
55
56
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.rst', encoding='utf-8') as file:
readme = file.read()
with open('LICENSE') as file:
license = file.read()
setup(
name = 'ROSSpy',
package_dir = {'ro':'rosspy'},
packages = find_packages(),
package_data = {
'rosspy':[
'water_bodies/*',
'databases/*',
'processed_databases/*',
'test/*',
'test/*/*',
'ro_module.json'
],
},
version = '0.1.7',
license = license,
description = "Software for predicting the brine concentrations and scaling quantities after RO desalination.",
long_description = readme,
author = 'Andrew Freiburger',
author_email = '[email protected]',
url = 'https://github.com/freiburgermsu/ROSSpy',
keywords = ['desalination', 'reactive transport', 'geochemistry', 'sustainability', 'civil engineering', 'fluid mechanics'],
install_requires = [
'matplotlib',
'chempy',
'scipy',
'chemw',
'pubchempy',
'pandas',
'phreeqpy',
'sigfig'
],
project_urls={
'Documentation': 'https://rosspy.readthedocs.io/en/latest/index.html',
'Issues': 'https://github.com/freiburgermsu/ROSSpy/issues',
},
classifiers={
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows :: Windows 10',
'Operating System :: MacOS',
}
)