-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
46 lines (43 loc) · 1.54 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import os
from setuptools import setup, find_packages
long_description = (
"pyncei provides tools to request data from the [Climate Data Online"
" Web Services v2 API](http://www.ncdc.noaa.gov/cdo-web/webservices/v2#gettingStarted)"
" provided by NOAA's National Centers for Environmental information (formerly"
" the National Center for Climate Data)."
"\n\n"
" Install with:"
"\n\n"
"```\n"
"pip install pyncei\n"
"```"
"\n\n"
"Learn more:\n\n"
"+ [GitHub repsository](https://github.com/adamancer/pyncei)\n"
"+ [Documentation](https://pyncei.readthedocs.io/en/latest/)"
)
setup(
name="pyncei",
maintainer="Adam Mansur",
maintainer_email="[email protected]",
description="Access data from NOAA's Climate Data Online Web Services v2 API",
long_description=long_description,
long_description_content_type="text/markdown",
version="1.0",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
url="https://github.com/adamancer/pyncei.git",
author="adamancer",
author_email="[email protected]",
license="MIT",
packages=["pyncei", "pyncei.files"],
install_requires=["pandas", "requests", "requests-cache"],
include_package_data=True,
zip_safe=False,
)