diff options
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..96868e5 --- /dev/null +++ b/setup.py @@ -0,0 +1,23 @@ +from setuptools import setup + +requirements = [ + 'httpx==0.21.1', + 'fastapi==0.70.0', + 'uvicorn==0.15.0' +] + + +setup(name='jnfilter', + version='0.2.0', + description='A FastAPI server to filter Nercast podcast feed', + url='https://git.sr.ht/~gabrielgio/jnfilter', + author='Gabriel Arakaki Giovanini', + author_email='mail@gabrielgio.me', + license='MIT', + packages=['jnfilter'], + entry_points=""" + [console_scripts] + jnfilterd=jnfilter.main:run + """, + install_requires=requirements, + zip_safe=False) |