Add setup.py file for pip module.
This commit is contained in:
parent
e4d0fc3b89
commit
eabc43cdba
20
setup.py
Normal file
20
setup.py
Normal 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
0
ticketfrei/__init__.py
Normal file
Loading…
Reference in a new issue