-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 842 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
"""
.. moduleauthor:: Martí Congost <marti.congost@whads.com>
"""
from setuptools import setup
setup(
name = "woost.extensions.staticpub",
version = "0.0b1",
description = "staticpub extension for the Woost CMS.",
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: ZODB",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP :: Site Management"
],
install_requires = [
"woost==3.0.*",
"requests"
],
packages = [
"woost.extensions.staticpub"
],
include_package_data = True,
zip_safe = False
)