This repository has been archived by the owner on May 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·66 lines (61 loc) · 2.03 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/usr/bin/env python
import os
import re
from setuptools import setup, Extension, find_packages
BUILD_CEXTENSIONS = True
readme = None
with open("README.md") as f:
readme = f.read()
setup(
name="storm-legacy",
version="0.2.0",
description=(
"Storm is an object-relational mapper (ORM) for Python developed at "
"Canonical. This is a fork maintained by Andreas Runfalk"),
long_description=readme,
long_description_content_type="text/markdown",
author="Gustavo Niemeyer",
author_email="[email protected]",
maintainer="Andreas Runfalk",
maintainer_email="[email protected]",
license="LGPL",
url="https://github.com/runfalk/storm-legacy",
download_url="https://pypi.org/project/storm-legacy/",
packages=find_packages(exclude=["tests", "tests.*"]),
extras_require={
"doc": [
"sphinx",
"sphinx_epytext",
],
"dev": [
"docutils",
"fixtures>=0.3.5",
"freezegun",
"mock>=2.0.0",
"psycopg2-binary>=2.5",
"pytest>=3",
"pytest-lazy-fixture",
"testresources>=0.2.4",
"testtools>=0.9.8",
],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
("License :: OSI Approved :: GNU Library or "
"Lesser General Public License (LGPL)"),
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Database",
"Topic :: Database :: Front-Ends",
"Topic :: Software Development :: Libraries :: Python Modules",
],
ext_modules=(BUILD_CEXTENSIONS and
[Extension("storm.cextensions", ["storm/cextensions.c"])]),
zip_safe=False,
)