forked from gjohansson-ST/pytrafikverket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 1.04 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
"""Setup for pytrafikverket."""
from setuptools import find_packages, setup
with open("README.md", "r", encoding="UTF-8") as fh:
long_description = fh.read()
setup(
name="pytrafikverket",
version="0.3.6",
description="Retreive values from public API at the Swedish Transport Administration (Trafikverket).",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/endor-force/pytrafikverket",
author="Peter Andersson, Jonas Karlsson",
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
install_requires=["aiohttp", "async-timeout", "lxml"],
packages=find_packages(),
include_package_data=True,
zip_safe=True,
entry_point={
"console_scripts": ["pytrafikverket=pytrafikverket.pytrafikverket:main"]
},
package_data={"pytrafikverket": ["py.typed"]},
)