-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·60 lines (54 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
57
58
59
60
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
with open('README.md') as readme_file:
readme = readme_file.read()
with open('requirements.txt') as requirements_file:
requirements = requirements_file.read()
setup(
name='awsm',
description="Automated Water Supply Model",
author="USDA ARS Northwest Watershed Research Center",
author_email='[email protected]',
url='https://github.com/USDA-ARS-NWRC/awsm',
long_description=readme,
long_description_content_type="text/markdown",
python_requires='>3.5',
packages=find_packages(include=['awsm', 'awsm.*']),
include_package_data=True,
package_data={
'awsm': [
'./framework/CoreConfig.ini',
'./framework/recipes.ini'
]
},
scripts=[
'./scripts/awsm',
'./scripts/wyhr',
'./scripts/plot_csv',
'./scripts/clean_awsm',
'./scripts/awsm_daily',
'./scripts/awsm_daily_airflow'
],
install_requires=requirements,
license="CC0 1.0",
zip_safe=False,
keywords='awsm',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
test_suite='awsm.tests',
use_scm_version={
'local_scheme': 'node-and-date',
},
setup_requires=[
'setuptools_scm',
],
)