-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
36 lines (34 loc) · 1.3 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Project:
# Module:
try: from setuptools import setup # for development to use 'setup.py develop' command
except ImportError: from distutils.core import setup
import sys
if sys.version_info < (2, 5):
raise NotImplementedError("Sorry, you need at least Python 2.5 to use Macaron.")
import macaron
setup(
name = "macaron",
version = macaron.__version__,
description = "Simple object-relational mapper for SQLite3, includes plugin for Bottle web framework",
long_description = macaron.__doc__,
author = macaron.__author__,
author_email = "[email protected]",
url = "http://nobrin.github.com/macaron",
py_modules = ["macaron"],
scripts = ["macaron.py"],
license = "MIT",
platforms = "any",
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Database",
"Topic :: Database :: Front-Ends",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
],
)