-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
32 lines (30 loc) · 1014 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
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name = "anillo",
version = "0.1.7",
description = "Ring/compojure like nanoframework build on top of werkzeug",
long_description = "",
keywords = "framework, web, ring, compojure",
author = "Jesús Espino García",
author_email = "[email protected]",
url = "https://github.com/jespino/anillo",
license = "BSD",
packages = find_packages(),
install_requires=[
"werkzeug>=0.10.4"
],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
]
)