-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
48 lines (43 loc) · 1.62 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
from setuptools import setup
# Since v 0.2.0 aiohttp is required.
requirements = ['aiohttp']
version = '0.2.1'
if not version:
raise RuntimeError('version is not set')
with open('README.md') as f:
readme = f.read()
setup(name='dbapi',
author='Decorater',
author_email='[email protected]',
url='https://github.com/IzunaDevs/dbapi',
bugtrack_url='https://github.com/IzunaDevs/dbapi/issues',
version=version,
packages=['dbapi'],
license='MIT',
description='Discord Bots API for Discord Bots.',
long_description=readme,
maintainer_email='[email protected]',
download_url='https://github.com/IzunaDevs/dbapi',
include_package_data=True,
install_requires=requirements,
platforms='Any',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Information Technology',
'Intended Audience :: Other Audience',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)