1
0
mirror of https://github.com/venthur/blag.git synced 2025-11-25 20:52:43 +00:00
Files
blag/setup.py
Bastian Venthur afe4173c40 tons of stuff
2018-07-14 22:02:54 +02:00

42 lines
1020 B
Python

#!/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',
],
)