-
Notifications
You must be signed in to change notification settings - Fork 49
/
setup.py
56 lines (52 loc) · 1.68 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
import os
from setuptools import setup, find_packages
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read()
setup(
name='dhooks',
author='kyb3r',
packages=find_packages(),
version='1.1.4',
description='An (a)sync wrapper for discord webhooks',
long_description=read('README.md'),
long_description_content_type='text/markdown',
license='MIT',
keywords=['discord', 'webhooks', 'discordwebhooks', 'discordhooks'],
install_requires=['aiohttp', 'requests'],
extras_require={
'docs': {
'sphinx_rtd_theme',
'sphinx'
},
'tests': {
'tox-travis',
'flake8',
'python-dotenv'
},
'examples': {
'sanic'
}
},
python_requires='>=3.5.3',
url='https://github.com/kyb3r/dhooks/',
project_urls={
'Issue Tracker': 'https://github.com/kyb3r/dhooks/issues',
'Documentation': 'https://dhooks.readthedocs.io/'
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Natural Language :: English',
'Topic :: Communications :: Chat',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)