-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
58 lines (49 loc) · 1.52 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
import os
import re
from setuptools import find_packages, setup
def get_version(package):
"""
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()
return re.search("__version__ = ['\"]([^'\"]+)['\"]", main_py).group(1)
def get_long_description():
"""
Return the README.
"""
return open("README.md", "r", encoding="utf8").read()
def get_packages(package):
"""
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"))
]
setup(
name="canvassyncer",
version=get_version("canvassyncer"),
url="https://github.com/BoYanZh/Canvas-Syncer",
license="MIT",
description="The async fast canavs file syncer.",
long_description=get_long_description(),
long_description_content_type="text/markdown",
author="SJTU JI Tech",
author_email="[email protected]",
maintainer="BoYanZh",
maintainer_email="[email protected]",
packages=find_packages(),
python_requires=">=3.6",
entry_points={
"console_scripts": [
"canvassyncer=canvassyncer:main",
],
},
project_urls={
"Bug Reports": "https://github.com/BoYanZh/Canvas-Syncer/issues",
"Source": "https://github.com/BoYanZh/Canvas-Syncer",
},
install_requires=["httpx", "aiofiles", "tqdm"],
)