-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
72 lines (50 loc) · 1.57 KB
/
setup.py
File metadata and controls
72 lines (50 loc) · 1.57 KB
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
67
68
69
70
71
72
__version__ = '1.0a2'
from setuptools import setup, find_packages
import sys, os
import textwrap
setup(
name="SchevoSql",
version=__version__,
description="Schevo tools for SQL databases",
long_description=textwrap.dedent("""
Provides export from Schevo_ databases to SQL databases.
.. _Schevo: http://schevo.org/
You can also get the `latest development version
<http://getschevo.org/hg/repos.cgi/schevosql-dev/archive/tip.tar.gz#egg=SchevoSql-dev>`__.
"""),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Database :: Database Engines/Servers',
'Topic :: Software Development :: Libraries :: Application Frameworks',
],
keywords='',
author='Orbtech, L.L.C. and contributors',
author_email='schevo@googlegroups.com',
url='http://schevo.org/wiki/SchevoSql',
license='LGPL',
platforms=['UNIX', 'Windows'],
packages=find_packages(exclude=['doc', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
'Schevo >= 3.0',
'RuleDispatch == dev, >= 0.5a0dev-r2306',
'DecoratorTools',
],
tests_require=[
'nose >= 0.10.1',
],
test_suite='nose.collector',
extras_require={
},
dependency_links = [
'http://turbogears.org/download/filelist.html',
],
entry_points = """
""",
)