This repository was archived by the owner on Jul 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (38 loc) · 1.26 KB
/
setup.py
File metadata and controls
47 lines (38 loc) · 1.26 KB
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
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_install_requires() -> List[str]:
return open("requirements.txt").read().splitlines()
setup(
name="ji-auth",
version=get_version("ji_auth"),
url="https://github.com/BoYanZh/JI-Auth",
license="MIT",
description="Canvas token and JOJ SID are within reach in CLI.",
long_description=get_long_description(),
long_description_content_type="text/markdown",
author="BoYanZh",
author_email="bomingzh@sjtu.edu.cn",
maintainer="BoYanZh",
maintainer_email="bomingzh@sjtu.edu.cn",
packages=find_packages(),
python_requires=">=3.6",
entry_points={"console_scripts": ["ji-auth=ji_auth:main"]},
install_requires=get_install_requires(),
)