-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (44 loc) · 1.26 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
import sys
from setuptools import setup, find_packages
requires = [
"pyramid==1.10.8",
"SQLAlchemy==1.4.3",
"transaction",
"pyramid_mako",
"pyramid_tm",
"pyramid_debugtoolbar",
"zope.sqlalchemy",
"wtforms",
"wtdojo",
"nose",
"mako",
"python-dateutil",
]
if sys.version_info[:3] < (2, 5, 0):
requires.append("pysqlite")
setup(
name="PyCK",
version="0.10.7",
description="Python Code Karigar - Web Framework",
long_description="""PyCK is an "opinionated" web framework based on Pyramid that makes choices of
ORM (SQLAlchemy), Templates(Mako) etc and aims at building more reusable componenets on top of these choices.""",
classifiers=[
"Programming Language :: Python",
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
author="Kashif Iftikhar",
author_email="[email protected]",
url="http://pyck.compulife.com.pk",
keywords="web wsgi bfg pylons pyramid",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
test_suite="combined_apps",
install_requires=requires,
entry_points="""\
[pyramid.scaffold]
pyck=pyck.scaffolds:PyCKTemplate
""",
)