-
Notifications
You must be signed in to change notification settings - Fork 80
/
setup.py
51 lines (47 loc) · 1.63 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import os
import sys
from setuptools import setup, find_packages
NAME = "cn2an"
AUTHOR = "Ailln"
EMAIL = "[email protected]"
URL = "https://github.com/Ailln/cn2an"
LICENSE = "MIT License"
DESCRIPTION = "Convert Chinese numerals and Arabic numerals."
if sys.version_info < (3, 6, 0):
raise RuntimeError(f"{NAME} requires Python >=3.6.0, but yours is {sys.version}!")
try:
lib_py = os.path.join(NAME, "__init__.py")
with open(lib_py, "r", encoding="utf8") as f_v:
v_line = ""
for line in f_v.readlines():
if line.startswith("__version__"):
v_line = line.strip()
break
exec(v_line) # get __version__ from __init__.py
except FileNotFoundError:
__version__ = "0.0.0"
if __name__ == "__main__":
setup(
name=NAME,
version=__version__,
author=AUTHOR,
author_email=EMAIL,
url=URL,
license=LICENSE,
description=DESCRIPTION,
packages=find_packages(),
include_package_data=True,
install_requires=open("./requirements.txt", "r", encoding="utf-8").read().splitlines(),
long_description=open("./README.md", "r", encoding="utf-8").read(),
long_description_content_type='text/markdown',
zip_safe=True,
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
f"License :: OSI Approved :: {LICENSE}",
"Operating System :: OS Independent",
],
python_requires=">=3.6"
)