mirror of
https://github.com/nikdoof/ttsmirror.git
synced 2025-12-17 12:59:26 +00:00
Add setup.py/requirements.txt
This commit is contained in:
1
requirements.txt
Normal file
1
requirements.txt
Normal file
@@ -0,0 +1 @@
|
|||||||
|
requests
|
||||||
20
setup.py
Normal file
20
setup.py
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
from setuptools import setup
|
||||||
|
|
||||||
|
setup(
|
||||||
|
name='ttsmirror',
|
||||||
|
version='0.1',
|
||||||
|
py_modules=['ttsmirror'],
|
||||||
|
url='https://github.com/nikdoof/ttsmirror',
|
||||||
|
license='MIT',
|
||||||
|
author='Andrew Williams',
|
||||||
|
author_email='andy@tensixtyone.com',
|
||||||
|
description='Parses a TTS JSON save and mirrors assets locally.',
|
||||||
|
entry_points={
|
||||||
|
"console_scripts": [
|
||||||
|
"ttsmirror=ttsmirror:main",
|
||||||
|
],
|
||||||
|
},
|
||||||
|
install_requires=[
|
||||||
|
'todoist-python',
|
||||||
|
]
|
||||||
|
)
|
||||||
Reference in New Issue
Block a user