added init command; removed torrent support temporarily
This commit is contained in:
26
setup.py
26
setup.py
@@ -0,0 +1,26 @@
|
||||
from importlib.metadata import entry_points
|
||||
import setuptools
|
||||
|
||||
|
||||
|
||||
with open('README.md', 'r') as readme:
|
||||
long_description = readme.read()
|
||||
|
||||
|
||||
|
||||
setuptools.setup(
|
||||
name='yoink',
|
||||
version='0.2.0',
|
||||
author='Bryan Bailey',
|
||||
author_email='brizzledev@gmail.com',
|
||||
description='',
|
||||
long_description=long_description,
|
||||
long_description_content_type='text/markdown',
|
||||
url='https://gitlab.com/Rigil-Kent/yoink',
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'yoink = yoink.cli:yoink'
|
||||
]
|
||||
},
|
||||
install_requires=['click', 'bs4', 'requests']
|
||||
)
|
||||
Reference in New Issue
Block a user