-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
38 lines (36 loc) · 1.31 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
from setuptools import setup, find_packages
with open("readme.md", "r") as fh:
long_description = fh.read()
setup(
name="vvspy",
version="2.3.0",
license="MIT",
description="API Wrapper for VVS (Verkehrsverbund Stuttgart)",
author="zaanposni",
author_email="[email protected]",
url="https://github.com/zaanposni/vvspy",
keywords=["vvs", "api", "stuttgart", "wrapper", "json", "rest", "efa", "python"],
packages=find_packages(exclude=["*tests"]),
package_data={"vvspy": ["vvspy/*"]},
python_requires=">=3.8",
install_requires=[
"requests",
"typing",
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
],
long_description=long_description,
long_description_content_type="text/markdown",
)