forked from ramonsaraiva/pubg-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 859 Bytes
/
setup.py
File metadata and controls
30 lines (29 loc) · 859 Bytes
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
from setuptools import (
find_packages,
setup)
setup(
name='pubg-python',
version='0.2.11',
description='A python wrapper for the PUBG developer API',
url='https://github.com/ramonsaraiva/pubg-python',
author='Ramon Saraiva',
author_email='ramonsaraiva@gmail.com',
license='MIT',
packages=find_packages(exclude=('tests*',)),
install_requires=[
'requests>=2.18.4',
'furl>=1.0.1',
],
extras_require={
":python_version<='3.4'": ['enum34>=1.1.6'],
},
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Utilities',
],
)