-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
67 lines (56 loc) · 1.79 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
import os
import re
from typing import List
from setuptools import find_packages, setup
def get_version(package: str) -> str:
"""
Return package version as listed in `__version__` in `__main__.py`.
"""
path = os.path.join(package, "__main__.py")
main_py = open(path, "r", encoding="utf8").read()
match = re.search("__version__ = ['\"]([^'\"]+)['\"]", main_py)
if match is None:
return "0.0.0"
return match.group(1)
def get_long_description() -> str:
"""
Return the README.
"""
return open("README.md", "r", encoding="utf8").read()
def get_packages(package: str) -> List[str]:
"""
Return root package and all sub-packages.
"""
return [
dirpath
for dirpath, dirnames, filenames in os.walk(package)
if os.path.exists(os.path.join(dirpath, "__init__.py"))
]
def get_install_requires() -> List[str]:
return open("requirements.txt").read().splitlines()
setup(
name="joj-submitter",
version=get_version("joj_submitter"),
url="https://github.com/BoYanZh/JOJ-Submitter",
license="MIT",
description="Submit your work to JOJ via cli.",
long_description=get_long_description(),
long_description_content_type="text/markdown",
author="BoYanZh",
author_email="[email protected]",
maintainer="BoYanZh",
maintainer_email="[email protected]",
packages=find_packages(),
python_requires=">=3.6",
entry_points={"console_scripts": ["joj-submit=joj_submitter:main"]},
project_urls={
"Bug Reports": "https://github.com/BoYanZh/JOJ-Submitter/issues",
"Source": "https://github.com/BoYanZh/JOJ-Submitter",
},
install_requires=[
"beautifulsoup4>=4.9.3",
"pydantic>=1.8.1",
"requests>=2.25.1",
"typer[all]>=0.3.2",
],
)