-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
27 lines (25 loc) · 878 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="mtexplore",
version="0.2.0",
author="Kevin Mendoza",
author_email='kevinmendoza@icloud.com',
description="MT Explore is a cartopy and mtpy based utility for viewing and cleaning Magnetotelluric data",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/El-minadero/mt-explore",
packages=setuptools.find_packages(),
install_requires = ['cartopy>=0.17.0',
'matplotlib>=3.0.3',
'numpy>=0.16.2',
'pandas>=0.24.',
'mtpy>=1.0.1'],
classifiers=[
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
)
print(setuptools.find_packages())