-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
31 lines (30 loc) · 922 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import setup
from monopati import __version__
setup(
name='monopati',
version=__version__,
author='Nikos Roussos',
author_email='[email protected]',
url='https://github.com/comzeradd/monopati/',
description='a minimalistic static content generator',
long_description=open('README.md').read(),
include_package_data=True,
zip_safe=False,
license='LICENSE',
install_requires=[
'docopt',
'Jinja2',
'Markdown',
'PyYAML'
],
packages=['monopati'],
scripts=['bin/monopati'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Internet :: WWW/HTTP :: Site Management',
]
)