forked from andreypopp/contentlet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (32 loc) · 1.19 KB
/
setup.py
File metadata and controls
37 lines (32 loc) · 1.19 KB
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
33
34
35
36
37
""" Setuptools/Distribute script."""
from setuptools import setup, find_packages
version = "0.1.1"
long_description = open("README.rst").read() + "\n" + open("CHANGES.rst").read()
description = "Framework for reusable and composable UI with pyramid"
requires = []
setup(name="contentlet",
version=version,
description=description,
long_description=long_description,
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: BFG",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords="web wsgi bfg ui",
author="Andrey Popp",
author_email="8mayday@gmail.com",
url="http://packages.python.org/contentlet",
license="BSD",
packages=find_packages(exclude=["ez_setup", "examples", "tests"]),
include_package_data=True,
zip_safe=True,
install_requires=requires,
test_suite="contentlet.tests",
)