-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
33 lines (30 loc) · 1 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
from setuptools import find_packages, setup
with open('README.md') as f:
long_description = f.read()
with open('requirements.txt') as f:
requirements = f.readlines()
setup(
name='apex-legends',
version='0.1.7',
description='Python wrapper for https://apex.tracker.gg/ api.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/xcodinas/apex-legends',
author='Xavier Codinas',
author_email='[email protected]',
license='MIT',
packages=find_packages(exclude=('tests*',)),
install_requires=requirements,
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',
],
)