Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
executable file
·58 lines (43 loc) · 1.9 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·58 lines (43 loc) · 1.9 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
#!/usr/bin/env python
# encoding: utf-8
importos
importsys
fromsetuptoolsimportsetup, find_packages
ifsys.version_info< (2, 6):
raiseSystemExit("Python 2.6 or later is required.")
exec(open(os.path.join("marrow", "util", "release.py")).read())
setup(
name="marrow.util",
version=version,
description="A collection of many commonly reimplemented utility classes and functions.",
long_description="""\
For full documentation, see the README.textile file present in the package,
or view it online on the GitHub project page:
https://github.com/marrow/marrow.util""",
author="Alice Bevan-McGregor",
author_email="alice+marrow@gothcandy.com",
url="https://github.com/marrow/marrow.util",
license="MIT",
test_suite='nose.collector',
tests_require= ['nose', 'coverage'],
classifiers= [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities"
],
packages=find_packages(exclude=['examples', 'tests']),
zip_safe=True,
include_package_data=True,
package_data= {'': ['README.textile', 'LICENSE']},
namespace_packages= ['marrow', 'marrow.util']
)