-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
44 lines (37 loc) · 1.22 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
import os
from setuptools import find_packages, setup
NAME = "aio_geojson_calfire_incidents"
AUTHOR = "Swanky Bubbles"
AUTHOR_EMAIL = ""
DESCRIPTION = "An async GeoJSON client library for the Cal Fire Incidents Program."
URL = "https://github.com/Swanky-Bubbles/python-aio-geojson-calfire-incidents"
REQUIRES = [
"aio_geojson_client>=0.17",
"aiohttp>=3.7.4,<4",
"pytz>=2019.01",
]
with open("README.md", "r") as fh:
long_description = fh.read()
HERE = os.path.abspath(os.path.dirname(__file__))
VERSION = {}
with open(os.path.join(HERE, NAME, "__version__.py")) as f:
exec(f.read(), VERSION) # pylint: disable=exec-used
setup(
name=NAME,
version=VERSION["__version__"],
author=AUTHOR,
author_email=AUTHOR_EMAIL,
description=DESCRIPTION,
long_description=long_description,
long_description_content_type="text/markdown",
url=URL,
packages=find_packages(exclude=("tests",)),
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
install_requires=REQUIRES,
)