-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
79 lines (66 loc) · 2.44 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import io
import os
from typing import Dict, List
from setuptools import find_packages, setup
HERE = os.path.abspath(os.path.dirname(__file__))
def load_requirements(filename: str) -> List[str]:
with io.open(
os.path.join(HERE, "requirements", filename), "rt", encoding="utf-8"
) as f:
return [line.strip() for line in f if is_requirement(line)]
def load_readme() -> str:
with io.open(os.path.join(HERE, "README.md"), "rt", encoding="utf8") as f:
readme = f.read()
# Replace img src for publication on pypi
return readme.replace(
"./docs/img/", "https://github.com/codewithemad/num2fa/raw/master/docs/img/"
)
def is_requirement(line: str) -> bool:
return not (line.strip() == "" or line.startswith("#"))
def load_about() -> Dict[str, str]:
about: Dict[str, str] = {}
with io.open(
os.path.join(HERE, "num2fa", "__about__.py"), "rt", encoding="utf-8"
) as f:
exec(f.read(), about) # pylint: disable=exec-used
return about
ABOUT = load_about()
setup(
name="num2fa",
version=ABOUT["__version__"],
project_urls={
"Code": "https://github.com/codewithemad/num2fa",
"Issue tracker": "https://github.com/codewithemad/num2fa/issues",
},
license="AGPLv3",
author="Emad Rad",
author_email="[email protected]",
description="A library to convert numbers (ints, floats, and other "
"standard numerical types) into Persian numbers or words.",
long_description=load_readme(),
long_description_content_type="text/markdown",
packages=find_packages(exclude=["tests*"]),
test_suite="tests",
include_package_data=True,
python_requires=">=3.6",
entry_points={
"console_scripts": ["num2fa=num2fa.cli:main"],
},
install_requires=load_requirements("base.txt"),
extras_require={
"dev": load_requirements("dev.txt"),
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"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 :: 3.11",
"Programming Language :: Python :: 3.12",
],
)