27 lines
646 B
Python
Executable File
27 lines
646 B
Python
Executable File
from setuptools import setup
|
|
from os import path
|
|
|
|
here = path.abspath(path.dirname(__file__))
|
|
|
|
setup(
|
|
name='Ciclostile',
|
|
version='0.0.0.dev0',
|
|
|
|
description='Static site generator',
|
|
long_description=open(path.join(here, 'README.md')).read(),
|
|
url='https://git.unit.macaomilano.org/unit/ciclostile',
|
|
|
|
author='Unit',
|
|
author_email='unit at paranoici dot org',
|
|
|
|
package_dir={'': 'src'},
|
|
packages=['ciclostile'],
|
|
# scripts=['src/ciclostile_cli'],
|
|
entry_points='''
|
|
[console_scripts]
|
|
ciclostile=cli:cli
|
|
''',
|
|
|
|
install_requires=['Click', 'markdown', 'jinja2', 'flask', 'flask-httpauth']
|
|
)
|