forked from woohyunjng/discord.py-components
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
64 lines (56 loc) · 1.99 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
import re
from codecs import open
from os import path, environ
from setuptools import setup
PACKAGE_NAME = "py_cord_components"
HERE = path.abspath(path.dirname(__file__))
with open("README.md", "r", encoding="utf-8") as f:
README = f.read()
with open("requirements.txt", "r", encoding="utf-8") as f:
requirements = f.read()
try:
VERSION = (
environ["TRAVIS_TAG"].lstrip("v")
if environ["TRAVIS"] == "true"
else environ["VERSION_NUMBER"]
)
except KeyError:
with open(path.join(HERE, PACKAGE_NAME, "const.py"), encoding="utf-8") as fp:
VERSION = re.search('__version__ = "([^"]+)"', fp.read()).group(1)
extras = {
"lint": ["black", "flake8", "isort"],
"readthedocs": ["sphinx", "sphinx-rtd-theme"],
}
extras["lint"] += extras["readthedocs"]
extras["dev"] = extras["lint"] + extras["readthedocs"]
setup(
name=PACKAGE_NAME,
version=VERSION,
author="SpaceDev",
author_email="support@spacedev.space",
description="An unofficial library for py-cord components.",
extras_require=extras,
include_package_data=True,
install_requires=requirements,
license="MIT License",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/spacedev-official/py-cord-components",
packages=["py_cord_components", "py_cord_components.ext"],
python_requires=">=3.6",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
],
)