2018-04-07 04:17:49 +02:00
|
|
|
from setuptools import setup
|
2017-11-18 16:11:40 +01:00
|
|
|
from os import path
|
|
|
|
|
|
|
|
here = path.abspath(path.dirname(__file__))
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='Ciclostile',
|
|
|
|
version='0.0.0.dev0',
|
2018-02-22 13:44:07 +01:00
|
|
|
|
2017-11-18 16:11:40 +01:00
|
|
|
description='Static site generator',
|
|
|
|
long_description=open(path.join(here, 'README.md')).read(),
|
2018-02-22 13:44:07 +01:00
|
|
|
url='https://git.unit.macaomilano.org/unit/ciclostile',
|
|
|
|
|
2017-11-18 16:11:40 +01:00
|
|
|
author='Unit',
|
|
|
|
author_email='unit at paranoici dot org',
|
2018-02-22 13:44:07 +01:00
|
|
|
|
2018-02-22 16:43:12 +01:00
|
|
|
package_dir={'': 'src'},
|
|
|
|
packages=['ciclostile'],
|
2018-04-24 17:22:36 +02:00
|
|
|
# scripts=['src/ciclostile_cli'],
|
|
|
|
entry_points='''
|
|
|
|
[console_scripts]
|
|
|
|
ciclostile=cli:cli
|
|
|
|
''',
|
2018-02-22 13:44:07 +01:00
|
|
|
|
2018-04-24 17:22:36 +02:00
|
|
|
install_requires=['Click', 'markdown', 'jinja2', 'flask', 'flask-httpauth']
|
2018-04-07 04:17:49 +02:00
|
|
|
)
|