forked from csdms/standard_names
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 865 Bytes
/
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
#!/usr/bin/env python
from ez_setup import use_setuptools
use_setuptools ()
from setuptools import setup
setup (name='CmtStandardNames',
version='0.2.1',
description='CSDMS standard names',
author='Eric Hutton',
author_email='[email protected]',
url='https://csdms.colorado.edu',
install_requires=['PyYAML'],
packages=['standard_names', 'standard_names.cmd',
'standard_names.tests'],
entry_points = {
'console_scripts': [
'snbuild = standard_names.cmd.snbuild:main',
'sndump = standard_names.cmd.sndump:main',
'snscrape = standard_names.cmd.snscrape:main',
'snsql= standard_names.cmd.snsql:main',
]
},
package_data={'': ['data/*yaml']},
test_suite='standard_names.tests',
)