forked from github.com/blag
renamed old sg stuff to blag
This commit is contained in:
12
setup.py
12
setup.py
@@ -4,19 +4,19 @@
|
||||
from setuptools import setup
|
||||
|
||||
meta = {}
|
||||
exec(open('./sg/version.py').read(), meta)
|
||||
exec(open('./blag/version.py').read(), meta)
|
||||
meta['long_description'] = open('./README.md').read()
|
||||
|
||||
setup(
|
||||
name='blag',
|
||||
version=meta['__VERSION__'],
|
||||
description='Simple static site generator.',
|
||||
description='simple blog-aware static site generator',
|
||||
long_description=meta['long_description'],
|
||||
long_description_content_type='text/markdown',
|
||||
keywords='markdown site generator cli',
|
||||
keywords='markdown blag blog static site generator cli',
|
||||
author='Bastian Venthur',
|
||||
author_email='mail@venthur.de',
|
||||
url='https://github.com/venthur/sg',
|
||||
url='https://github.com/venthur/blag',
|
||||
python_requires='>=3',
|
||||
install_requires=[
|
||||
'markdown',
|
||||
@@ -24,10 +24,10 @@ setup(
|
||||
'jinja2',
|
||||
'pygments',
|
||||
],
|
||||
packages=['sg'],
|
||||
packages=['blag'],
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'sg = sg.sg:main'
|
||||
'blag = blag.blag:main'
|
||||
]
|
||||
},
|
||||
license='MIT',
|
||||
|
||||
Reference in New Issue
Block a user