-
Notifications
You must be signed in to change notification settings - Fork 37
/
setup.py
executable file
·32 lines (29 loc) · 953 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
32
from setuptools import setup
requires = ['jinja2 >= 2.10', 'pygments',
'markdown < 3.0', 'pyyaml', 'beautifulsoup4']
entry_points = {
'console_scripts': [
'urubu = urubu.main:main',
]
}
setup(
name="urubu",
version="1.4.0",
url='http://urubu.jandecaluwe.com',
author='Jan Decaluwe',
author_email='[email protected]',
description="A micro CMS for static websites with a focus "
"on good navigation practices.",
packages=['urubu'],
include_package_data=True,
install_requires=requires,
entry_points=entry_points,
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)