forked from molflow/obsdata
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 706 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 706 Bytes
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
#!/usr/bin/env python3
from setuptools import setup
setup(
name='obsdata',
version='1.0',
description=(
'Package for getting data from Federal Land Manager' +
' Environmental Database'
),
author='Bengt Rydberg',
author_email='bengt.rydberg@molflow.com',
entry_points={"console_scripts": [
"get_fed_data = scripts.get_fed_data:cli",
"get_eanet_data = scripts.get_eanet_data:cli",
"get_indaaf_data = scripts.get_indaaf_data:cli",
"get_capmon_data = scripts.get_capmon_data:cli",
]},
packages=['obsdata', 'scripts', 'data', 'tests'],
package_data={
'': ['*.csv', '*.txt'],
},
include_package_data=True,
)