-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
27 lines (24 loc) · 892 Bytes
/
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
from setuptools import setup, find_packages
long_description = open("README.md").read()
setup(
name="srgssr-weather",
version="0.1.0",
license="Apache License 2.0",
url="https://github.com/home-assistant-libs/srgssr-weather",
author="Pascal Vizeli",
author_email="[email protected]",
description="Python module to talk to SRGSSR weather API.",
long_description=long_description,
long_description_content_type="text/markdown",
packages=["srgssr_weather"],
zip_safe=True,
platforms="any",
install_requires=list(val.strip() for val in open("requirements.txt")),
classifiers=[
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)