-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·37 lines (34 loc) · 1.09 KB
/
setup.py
File metadata and controls
executable file
·37 lines (34 loc) · 1.09 KB
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
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
# (c) 2015 Ticketbis
from setuptools import setup, find_packages
import ticketbis
version = str(ticketbis.__version__)
setup(
name='ticketbis',
version=version,
author='Jose Gargallo',
author_email='jose.gargallo@ticketbis.com',
url='https://github.com/ticketbis/ticketbis-python-api-client',
description='ticketbis API wrapper library',
long_description=open('./README.txt', 'r').read(),
download_url='https://github.com/ticketbis/ticketbis-python-api-client',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'License :: OSI Approved :: MIT License',
],
packages=find_packages(),
install_requires=[
'requests>=2.1',
'six',
],
license='MIT License',
keywords='ticketbis api',
include_package_data=True,
zip_safe=True,
)