forked from wooslow/disnake-ext-invitetracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
95 lines (82 loc) · 2.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
import re
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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 :: Implementation :: CPython",
"Topic :: Communications",
"Topic :: Documentation",
"Topic :: Documentation :: Sphinx",
"Topic :: Internet",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
extras_require = {
"docs": [
"sphinx",
"sphinxcontrib_trio",
"sphinx-rtd-theme",
],
}
packages = [
"disnake.ext.invitetracker",
"disnake.ext.invitetracker.database",
"disnake.ext.invitetracker.database.models",
"disnake.ext.invitetracker.util",
]
project_urls = {
"Source": "https://github.com/Synth-discord-bot/disnake-ext-invitetracker",
}
_version_regex = (
r"^version = ('|\")((?:[0-9]+\.)*[0-9]+(?:\.?([a-z]+)(?:\.?[0-9])?)?)\1$"
)
with open("disnake/ext/invitetracker/__init__.py") as stream:
match = re.search(_version_regex, stream.read(), re.MULTILINE)
version = match.group(2)
if match.group(3) is not None:
try:
import subprocess
process = subprocess.Popen(
["git", "rev-list", "--count", "HEAD"], stdout=subprocess.PIPE
)
out, _ = process.communicate()
if out:
version += out.decode("utf-8").strip()
process = subprocess.Popen(
["git", "rev-parse", "--short", "HEAD"], stdout=subprocess.PIPE
)
out, _ = process.communicate()
if out:
version += "+g" + out.decode("utf-8").strip()
except Exception as e:
pass
setuptools.setup(
author="Lukef, The Synth Development Team",
classifiers=classifiers,
description="A module that allows you to track invitations with Disnake",
long_description=long_description,
long_description_content_type="text/markdown",
extras_require=extras_require,
license="Apache Software License",
name="disnake-ext-invitetracker",
packages=packages,
project_urls=project_urls,
python_requires=">=3.8.0",
url="https://github.com/Synth-discord-bot/disnake-ext-invitetracker",
version=version,
)