Add setup.py file for pip module.

refactoring
cookietime--yay 2019-03-04 19:50:00 +01:00
parent e4d0fc3b89
commit eabc43cdba
2 changed files with 20 additions and 0 deletions

20
setup.py Normal file
View File

@ -0,0 +1,20 @@
from setuptools import setup
setup(
name='ticketfrei',
version='',
packages=['ticketfrei'],
url='https://github.com/ticketfrei/ticketfrei',
license='ISC',
author='',
author_email='',
description='',
install_requires=[
'bottle',
'jwt',
'mastodon.py',
'pylibscrypt',
'pytoml',
'tweepy',
],
)

0
ticketfrei/__init__.py Normal file
View File