blob: 07add8246257827906a2d7f0a149d2a00ff2223d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
from setuptools import setup
requirements = [
'httpx==0.21.1',
'fastapi==0.70.0',
'uvicorn==0.15.0'
]
setup(name='jnfilter',
version='0.3.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',
]
},
install_requires=requirements,
zip_safe=False)
|