-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 737 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
config = {
'description': ('A collection of wrapper functions'
' for the EDSS Models-3 I/O API'),
'author': 'Timothy W. Hilton',
'url': 'https://github.com/Timothy-W-Hilton/IOAPI_Pytools',
'download_url': 'https://github.com/Timothy-W-Hilton/IOAPI_Pytools',
'author_email': 'thilton@ucmerced.edu',
'version': '1.0',
'install_requires': ['numpy'],
'packages': ['IOAPIPytools'],
'scripts': [],
'name': 'IOAPIPytools'
}
setup(package_dir={'IOAPIPytools': 'IOAPIpytools'},
package_data={'IOAPIPytools': ['IOAPIpytools/data/*']},
include_package_data=True,
**config)