-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
28 lines (25 loc) · 832 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
from setuptools import setup
from pwy.__version__ import __version__
README = open("README.md").read()
setup(
name="pwy",
version=__version__,
description="A simple weather information tool",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/cliegargo/pwy",
author="Clint",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.10",
],
packages=["pwy"],
include_package_data=True,
package_data={"pwy": ["pwy/*"]},
install_requires=["requests", "rich"],
entry_points={"console_scripts": ["pwy = pwy.__main__:main"]},
)