-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
34 lines (29 loc) · 977 Bytes
/
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
import re
from setuptools import setup
with open('requirements.txt') as f:
requirements = f.read().splitlines() # type: ignore
version = ''
with open('discohook/__init__.py') as f:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', f.read(), re.MULTILINE).group(1) # type: ignore
readme = ''
with open('README.md') as f:
readme = f.read() # type: ignore
setup(
name="discohook",
version=version,
description="discord http api wrapper for serverless apps",
url="https://github.com/jnsougata/discohook",
author="Sougata Jana",
author_email="[email protected]",
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=["discohook"],
python_requires=">=3.6",
install_requires=requirements,
long_description=readme,
long_description_content_type="text/markdown",
)