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:
41
setup.py
Normal file
41
setup.py
Normal 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',
|
||||
],
|
||||
)
|
||||
Reference in New Issue
Block a user