-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
23 lines (22 loc) · 904 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
from distutils.core import setup
try:
from setuptools import setup
except:
pass
setup(
name = "kiss.py",
version = "1.0.0",
author = "Stanislav Feldman",
description = ("MVC web framework in Python with Gevent, Jinja2, Werkzeug"),
url = "http://stanislavfeldman.github.com/kiss.py/",
keywords = "web framework gevent jinja2 werkzeug orm oauth socialauth vkontakte facebook google yandex",
packages=[
"kiss", "kiss.controllers", "kiss.core", "kiss.views", "kiss.models"
],
install_requires = ["gevent", "jinja2", "compressinja", "beaker", "werkzeug", "putils", "jsmin", "pyScss", "sqlalchemy == 0.7.8", "elixir", "jsonpickle", "pev", "requests", "pycrypto"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Application Frameworks"
],
)