-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (37 loc) · 1.17 KB
/
setup.py
File metadata and controls
44 lines (37 loc) · 1.17 KB
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
"""Setup of aio_quakeml_client library."""
from setuptools import find_packages, setup
from aio_quakeml_client.__version__ import __version__
NAME = "aio_quakeml_client"
AUTHOR = "Malte Franken"
AUTHOR_EMAIL = "coding@subspace.de"
DESCRIPTION = "An async QuakeML client library."
URL = "https://github.com/exxamalte/python-aio-quakeml-client"
REQUIRES = [
"aiohttp>=3.7.4,<4",
"haversine>=2.8.1",
"xmltodict>=0.13.0",
"dateparser>=1.2.0",
]
with open("README.md") as fh:
long_description = fh.read()
setup(
name=NAME,
version=__version__,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
description=DESCRIPTION,
license="Apache-2.0",
long_description=long_description,
long_description_content_type="text/markdown",
url=URL,
packages=find_packages(exclude=("tests",)),
classifiers=[
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
install_requires=REQUIRES,
)