forked from Skelmis/Discord-Bot-Base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (48 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
import re
from setuptools import setup
with open("readme.md", "r") as fh:
long_description = fh.read()
_version_regex = (
r"^__version__ = ('|\")((?:[0-9]+\.)*[0-9]+(?:\.?([a-z]+)(?:\.?[0-9])?)?)\1$"
)
try:
with open("bot_base/__init__.py") as stream:
match = re.search(_version_regex, stream.read(), re.MULTILINE)
version = match.group(2)
except FileNotFoundError:
version = "0.0.0"
def parse_requirements_file(path):
with open(path) as fp:
dependencies = (d.strip() for d in fp.read().split("\n") if d.strip())
return [d for d in dependencies if not d.startswith("#")]
setup(
name="Bot-Base",
version=version,
author="Skelmis",
author_email="[email protected]",
description="A simplistic yet feature rich discord bot template.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Skelmis/DPY-Bot-Base",
extras_requires={
"discord": ["discord"],
"discord": ["discord"],
},
packages=[
"bot_base",
"bot_base.db",
"bot_base.blacklist",
"bot_base.wraps",
"bot_base.caches",
"bot_base.converters",
"bot_base.cogs",
"bot_base.paginators",
],
install_requires=parse_requirements_file("requirements.txt"),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
],
python_requires=">=3.8",
)