-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
63 lines (50 loc) · 1.36 KB
/
setup.py
File metadata and controls
63 lines (50 loc) · 1.36 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
from distutils.cmd import Command
from distutils.command.build import build as _build
import os
import sys
from textwrap import dedent
from setuptools import setup, find_packages
version = '1.0a1'
class build(_build):
def has_swf_apps(self):
return True
sub_commands = _build.sub_commands + [
('build_swf', has_swf_apps),
]
class build_swf(Command):
pass
setup(
# Informational.
name = 'SchevoFlex',
version = version,
description = "Flex/Flash UI for creating and using Schevo databases",
long_description = dedent("""
"""),
classifiers = [
],
keywords = '',
author = 'Orbtech, L.L.C. and contributors',
author_email = 'schevo@googlegroups.com',
url = 'http://getschevo.org/schevoflex/',
license = 'LGPL',
# Basic structure, requirements, entry points.
packages = find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data = True,
zip_safe = False,
install_requires = [
'Paste',
'PasteScript',
'PyAMF >= 0.2',
'Schevo >= 3.1a1',
],
entry_points = {
'paste.app_factory': [
'wsgigateway = schevoflex.wsgigateway:app_factory',
],
},
# Distutils customization.
cmdclass = dict(
build = build,
build_swf = build_swf,
),
)