-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
46 lines (40 loc) · 1.16 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
"""
"""
from setuptools import setup, find_packages
import trackopy
with open('README.rst') as r:
readme = r.read()
setup(
name=trackopy.__title__,
version=trackopy.__version__,
url='https://github.com/ThaWeatherman/trackopy',
license='MIT',
author='Sean Beck',
author_email='[email protected]',
description='Python wrapper for the Trackobot API',
long_description=readme,
packages=find_packages(),#['trackopy'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'requests',
'click'
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3'
],
test_suite='tests',
keywords='trackobot hearthstone',
entry_points='''
[console_scripts]
tb=trackopy.scripts.tb:cli
'''
)