forked from Detrous/darksky
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (25 loc) · 977 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
28
29
30
31
import os
from setuptools import find_packages, setup
__version__ = "1.6.3"
with open(os.path.join(os.path.abspath(os.path.dirname(__file__)), "README.md")) as f:
README = f.read()
setup(
version=__version__,
name="darksky_weather",
packages=find_packages(),
install_requires=["requests==2.21.0", "pytz==2019.1", "aiohttp==3.5.4"],
description="The Dark Sky API wrapper",
long_description="View on github",
author="Detrous",
author_email="[email protected]",
url="https://github.com/Detrous/darksky",
download_url="https://github.com/Detrous/darksky/archive/%s.tar.gz" % __version__,
license="GPLv3 License",
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)