-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
26 lines (25 loc) · 885 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
from distutils.core import setup
setup(
name = 'sr_api',
packages = ['sr_api'],
version = '1.1.5',
license='MIT',
description = 'An async wrapper for some-random-api',
author = 'Niels Steenman',
author_email = '[email protected]',
url = 'https://github.com/iDutchy/sr_api',
download_url = 'https://github.com/iDutchy/sr_api/archive/1.1.5.tar.gz',
keywords = ['wrapper', 'api', 'random'],
install_requires=['aiohttp', 'yarl'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
)