forked from ZeChrales/aiopogo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·32 lines (30 loc) · 1.08 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='aiopogo',
author='David Christenson',
author_email='[email protected]',
description='Asynchronous Pokemon API lib',
version='2.0.4',
url='https://github.com/Noctem/aiopogo',
packages=find_packages(),
install_requires=[
'protobuf>=3.0.0',
'aiohttp>=2.1,<2.3',
'pycrypt>=0.7.0',
'cyrandom>=0.1.2'],
extras_require={
'performance': ['ujson>=1.3.5', 'cchardet>=2.1.0', 'aiodns>=1.1.1'],
'socks': ['aiosocks>=0.2.3'],
'google': ['gpsoauth>=0.4.0']},
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: MIT License'
]
)