-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (16 loc) · 836 Bytes
/
setup.py
File metadata and controls
18 lines (16 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from distutils.core import setup
# create package with specific modules accessible
# https://packaging.python.org/en/latest/distributing/
# run python setup.py sdist
setup(name='ubertool',
version='1.0',
description='ubertool ecological risk models',
author='Tom Purucker',
author_email='purucker.tom@epa.gov',
url='https://github.com/quanted/ubertool_ecorest',
# packages=['REST_UBER']
py_modules=['REST_UBER.sip_rest.sip_model_rest', 'REST_UBER.stir_rest.stir_model_rest',
'REST_UBER.rice_rest.rice_model_rest', 'REST_UBER.terrplant_rest.terrplant_model_rest',
'REST_UBER.iec_rest.iec_model_rest', 'REST_UBER.earthworm_rest.earthworm_model_rest',
'REST_UBER.beerex_rest.beerex_model_rest', 'REST_UBER.sam_rest.sam_model_rest']
)