-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
64 lines (52 loc) · 1.94 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
# -*- coding: utf-8 -*-
import os
import re
from setuptools import find_packages, setup
def get_version() -> str:
path = os.path.join(
os.path.abspath(os.path.dirname(__file__)), "aioaria2", "__init__.py"
)
with open(path, "r", encoding="utf-8") as f:
data = f.read()
result = re.findall(r"(?<=__version__ = \")\S+(?=\")", data)
return result[0]
def get_dis():
with open("README.markdown", "r", encoding="utf-8") as f:
return f.read()
packages = find_packages(exclude=("test", "tests.*", "test*"))
def main():
version: str = get_version()
dis = get_dis()
setup(
name="aioaria2",
version=version,
url="https://github.com/synodriver/aioaria2",
packages=packages,
keywords=["asyncio", "Aria2"],
description="Support Aria2 rpc client and manage server with async/await",
long_description_content_type="text/markdown",
long_description=dis,
author="synodriver",
maintainer="v-vinson",
python_requires=">=3.6",
install_requires=["aiohttp", "aiofiles", "typing-extensions"],
license="GPLv3",
classifiers=[
"Development Status :: 3 - Alpha",
"Framework :: AsyncIO",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"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",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
],
include_package_data=True,
)
if __name__ == "__main__":
main()