-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
41 lines (39 loc) · 1.07 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='temboz',
author='Fazal Majid',
author_email='python@sentfrom.com',
version='4.11',
url='https://github.com/fazalmajid/temboz',
#package_dir={'': 'src'},
packages=['tembozapp'] + setuptools.find_packages(),
include_package_data=True,
scripts=['temboz'],
install_requires=[
'flask',
'requests',
'html5lib>=1.1',
'passlib',
'argon2_cffi',
'ctranslitcodec',
'sgmllib3k',
'feedparser>=6.0.2',
'werkzeug>=1.0.1',
'bleach>=5.0.1',
'yappi'
],
description='The Temboz RSS/Atom feed reader and aggregator.',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
)