tvid/setup.py

14 lines
366 B
Python
Raw Permalink 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(
2020-03-11 16:13:50 +00:00
name="tvid",
version="1.0.0",
2020-03-10 13:44:28 +00:00
packages=find_packages(),
2020-03-11 16:13:50 +00:00
license="WTFPL",
long_description=open("README.md").read(),
entry_points={"console_scripts": ["tvidd = tvid.tvid:serve"],},
2020-03-10 13:44:28 +00:00
)