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
|
#!/usr/bin/env python
try:
from setuptools import setup, Extension
except ImportError:
from distutils.core import setup, Extension
BUILD_CEXTENSIONS = False
setup(
name="storm",
version="0.10",
description="Storm is an object-relational mapper (ORM) for Python developed at Canonical.",
author="Gustavo Niemeyer",
author_email="gustavo@niemeyer.net",
url="https://storm.canonical.com",
packages=[
"storm",
"storm.databases",
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Programming Language :: Python",
"Topic :: Database",
"Topic :: Database :: Front-Ends",
"Topic :: Software Development :: Libraries :: Python Modules",
],
ext_modules=(BUILD_CEXTENSIONS and
[Extension("storm.cextensions", ["storm/cextensions.c"])])
)
|