-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
49 lines (42 loc) · 1.28 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import os
import platform
import sys
from setuptools import setup, find_packages
VERSION = '0.1a7'
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
except IOError:
README = CHANGES = ''
install_requires = [
'colander',
'venusian',
]
tests_require = install_requires
if sys.version_info[:2] < (2, 7):
tests_require += ['unittest2']
setup(name='limone',
version=VERSION,
description=('Content type system based on colander schemas.'),
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Framework :: Pylons",
"License :: Repoze Public License",
],
keywords='',
author="Chris Rossi, Archimedean Company",
author_email="[email protected]",
url="http://pylonsproject.org",
license="BSD-derived (http://www.repoze.org/LICENSE.txt)",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires = install_requires,
tests_require = tests_require,
test_suite="limone.tests",
entry_points = """\
"""
)