-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
26 lines (26 loc) · 832 Bytes
/
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
from distutils.core import setup
setup(
name='ticketleap',
packages=['ticketleap'],
version='1.0.2',
license='MIT',
description=
'Unofficial TicketLeap API. Create and modify TicketLeap events at scale',
author='Connor Skees',
author_email='[email protected]',
url='https://github.com/connorskees/ticketleap',
download_url=
'https://github.com/ConnorSkees/ticketleap/archive/v1.0.2.tar.gz',
keywords=['ticketleap', 'api'],
install_requires=[
'requests',
'beautifulsoup4',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
)