-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·60 lines (51 loc) · 1.91 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env python3
"""
aerisweather_api_v1 setup
-------------------------
The packaging configuration for the AerisWeather API v1 Python SDK.
"""
from os import path
from setuptools import setup
thisdir = path.dirname(path.abspath(__file__))
with open(path.join(thisdir, "README.rst"), "r") as f:
readme = f.read()
source_url = "https://www.github.com/aerisweather/python-aerisweather-api-v1"
install_requires = [
"geojson >= 2.0.0, < 3.0.0",
"requests >= 2.0.0, < 3.0.0",
]
if __name__ == "__main__":
setup(
name="aerisweather_api_v1",
setup_requires=["setuptools_scm"],
use_scm_version=True,
description="SDK for the AerisWeather API v1",
long_description=readme,
long_description_content_type="text/markdown",
author="John Koelndorfer",
author_email="[email protected]",
url=source_url,
include_package_data=True,
package_data={"": ["LICENSE", "py.typed", "README.rst"]},
package_dir={"aerisweather_api_v1": "aerisweather_api_v1"},
python_requires=">=3.6.0",
install_requires=install_requires,
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Software Development :: Libraries",
],
project_urls={
"Source": source_url,
},
)