tvid/setup.py

19 lines
405 B
Python
Raw Normal View History

2020-03-10 13:44:28 +00:00
from setuptools import setup, find_packages
2020-03-11 01:52:30 +00:00
# for some reason that console_scripts entrypoint fails
# and i have no idea why so there is a bin in bin/
2020-03-10 13:44:28 +00:00
setup(
name='tvid',
2020-03-11 01:52:30 +00:00
version='1.0.0',
2020-03-10 13:44:28 +00:00
packages=find_packages(),
license='WTFPL',
long_description=open('README.md').read(),
entry_points = {
'console_scripts': [
'tvidd = tvid.tvid:serve'
],
},
)