-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 839 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 839 Bytes
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
with open("./README.rst", encoding="utf-8") as f:
readme = f.read()
setup(
name="wisepy2",
version="1.4.1",
keywords="CLI solution",
description="simple CLI framework",
long_description=readme,
license="MIT",
url="https://github.com/Xython/wisepy2",
author="thautwarm",
author_email="twshere@outlook.com",
py_modules=["wisepy2"],
platforms="any",
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
],
zip_safe=False,
)