-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
75 lines (64 loc) · 1.86 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
"""
decanter
========
A blogging framework based on Python-Flask. The project is in it's infancy,
more details to come as things develop.
"""
import sys
import os
from setuptools import setup, find_packages
py = sys.version_info[:2]
if py > (2, 7) or py < (2, 5):
raise RuntimeError('Python 2.5, 2.6 or 2.7 is required')
root = os.path.dirname(os.path.abspath(__file__))
README = os.path.join(root, 'README.rst')
if os.path.isfile(README):
README = open(README).read()
else:
README = None
version = '0.1'
install_requires = [
'pytz==2012d',
'PyYAML==3.10',
'cement==2.0.2',
'gunicorn==0.14.6',
'yuicompressor==2.4.7',
'itsdangerous==0.17',
'flask==0.9',
'flask-security==1.2.3',
'flask-assets',
'flask-seasurf',
'SQLAlchemy',
'psycopg2==2.4.5',
'boto==2.6.0',
]
tests_require = [
'nose==1.1.2',
'mock==0.8.0',
'coverage==3.5.1',
'flask-testing==0.3',
]
entry_points = dict()
setup(name='decanter',
version=version,
description="Blogging framework based on Python-Flask.",
long_description=README,
keywords='blog blogging vanity',
author='Brian Oldfield',
author_email='brian@oldfield.io',
url='http://github.com/boldfield/decanter',
license='GPL',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
extras_require={'tests': tests_require},
install_requires=install_requires,
entry_points=entry_points,
classifiers=[
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules',
'Operating System :: OS Independent',
])