This commit is contained in:
Bastian Venthur
2021-01-11 22:36:30 +01:00
parent 4cd3afb08d
commit d3fe365bb0
11 changed files with 233 additions and 176 deletions

View File

@@ -20,25 +20,15 @@ setup(
python_requires='>=3',
install_requires=[
'markdown',
'feedgenerator',
'jinja2',
'pygments',
],
extras_require={
'dev': [
'pytest',
'pytest-cov',
'flake8',
]
},
packages=['sg'],
entry_points={
'console_scripts': [
'sg = sg.__main__:main'
'sg = sg.sg:main'
]
},
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
)