1
0
mirror of https://github.com/venthur/blag.git synced 2025-11-25 20:52:43 +00:00

tons of stuff

This commit is contained in:
Bastian Venthur
2018-07-14 22:02:54 +02:00
parent 4de6909e93
commit afe4173c40
8 changed files with 86 additions and 26 deletions

41
setup.py Normal file
View File

@@ -0,0 +1,41 @@
#!/usr/bin/env python
from setuptools import setup
meta = {}
exec(open('./sg/version.py').read(), meta)
meta['long_description'] = open('./README.md').read()
setup(
name='sg',
version=meta['__VERSION__'],
description='Simple static site generator.',
long_description=meta['long_description'],
long_description_content_type='text/markdown',
keywords='markdown site generator cli',
author='Bastian Venthur',
author_email='mail@venthur.de',
url='https://github.com/venthur/sg',
python_requires='>=3',
extras_require={
'dev': [
'pytest',
'pytest-cov',
'flake8',
]
},
packages=['sg'],
entry_points={
'console_scripts': [
'sg = sg.__main__:main'
]
},
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
)