-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
20 lines (18 loc) · 829 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name = 'intermag',
packages = ['intermag'],
version = '0.0.2',
description = 'Python library to auto-download, manipulate, and process magnetic data from INTERMAGNET sites',
long_description = long_description,
long_description_content_type = "text/markdown",
author = 'Power_Broker',
author_email = '[email protected]',
url = 'https://github.com/PowerBroker2/intermag',
download_url = 'https://github.com/PowerBroker2/intermag/archive/0.0.2.tar.gz',
keywords = ['War Thunder'],
classifiers = [],
install_requires = ['numpy', 'pandas', 'matplotlib', 'scipy', 'ppigrf']
)