-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 871 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
27
28
#!/usr/bin/env python
import setuptools
import os
setuptools.setup(
name='libaarhusxyz',
version='0.0.32',
description='Parser for the Aarhus Workbench XYZ format for geophysical data',
long_description="""Parser for the Aarhus Workbench XYZ format for geophysical data""",
long_description_content_type="text/markdown",
author='Egil Moeller, Craig William Christensen and others ',
author_email='[email protected], [email protected]',
url='https://github.com/emerald-geomodelling/libaarhusxyz',
packages=setuptools.find_packages(),
include_package_data=True,
package_data={'libaarhusxyz': ['*.csv']},
install_requires=[
"numpy",
"pandas",
"pyproj",
"matplotlib"
],
extras_require={
'normalisation': ["pryproj", "projnames"],
'tests': ['nose2', 'downfile'],
}
)