-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·190 lines (141 loc) · 4.1 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
#!/usr/bin/env python
##
# Copyright (c) 2006-2016 Apple Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
##
from __future__ import print_function
from os.path import dirname, abspath, join as joinpath
from setuptools import setup, find_packages as setuptools_find_packages
import errno
import os
import subprocess
#
# Utilities
#
def find_packages():
modules = []
for pkg in filter(
lambda p: os.path.isdir(p) and os.path.isfile(os.path.join(p, "__init__.py")),
os.listdir(".")
):
modules.extend([pkg, ] + [
"{}.{}".format(pkg, subpkg)
for subpkg in setuptools_find_packages(pkg)
])
return modules
def version():
"""
Compute the version number.
"""
base_version = "0.1"
branches = tuple(
branch.format(
project="CalDAVTester",
version=base_version,
)
for branch in (
"tags/release/{project}-{version}",
"branches/release/{project}-{version}-dev",
"trunk",
)
)
source_root = dirname(abspath(__file__))
for branch in branches:
cmd = ["svnversion", "-n", source_root, branch]
try:
svn_revision = subprocess.check_output(cmd)
except OSError as e:
if e.errno == errno.ENOENT:
full_version = base_version + "-unknown"
break
raise
if "S" in svn_revision:
continue
full_version = base_version
if branch == "trunk":
full_version += "b.trunk"
elif branch.endswith("-dev"):
full_version += "c.dev"
if svn_revision in ("exported", "Unversioned directory"):
full_version += "-unknown"
else:
full_version += "-r{revision}".format(revision=svn_revision)
break
else:
full_version = base_version
full_version += "a.unknown"
full_version += "-r{revision}".format(revision=svn_revision)
return full_version
#
# Options
#
name = "CalDAVTester"
description = "CalDAV/CardDAV protocol test suite"
long_description = file(joinpath(dirname(__file__), "README.txt")).read()
url = "http://trac.calendarserver.org/wiki/CalDAVTester"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 2 :: Only",
"Topic :: Software Development :: Testing",
]
author = "Apple Inc."
author_email = "[email protected]"
license = "Apache License, Version 2.0"
platforms = ["all"]
#
# Dependencies
#
setup_requirements = []
install_requirements = []
extras_requirements = {}
#
# Set up Extension modules that need to be built
#
# from distutils.core import Extension
extensions = []
#
# Run setup
#
def doSetup():
version_string = version()
setup(
name=name,
version=version_string,
description=description,
long_description=long_description,
url=url,
classifiers=classifiers,
author=author,
author_email=author_email,
license=license,
platforms=platforms,
packages=find_packages(),
package_data={},
scripts=[],
data_files=[],
ext_modules=extensions,
py_modules=[],
setup_requires=setup_requirements,
install_requires=install_requirements,
extras_require=extras_requirements,
)
#
# Main
#
if __name__ == "__main__":
doSetup()