-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
78 lines (69 loc) · 2.4 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
# encoding: utf-8
from setuptools import setup, find_packages
import os.path
# Package data
# ------------
_name = 'jpl.plone2ldap'
_version = '1.0.0'
_description = 'Export Plone usernames and passwords and import them into an LDAP server'
_url = 'https://github.com/MCLConsortium/' + _name
_downloadURL = 'https://github.com/MCLConsortium/' + _name + '/archive/' + _version + '.zip'
_author = 'Sean Kelly'
_authorEmail = 'sean.kelly@jpl.nasa.gov'
_maintainer = 'Sean Kelly'
_maintainerEmail = 'sean.kelly@jpl.nasa.gov'
_license = 'ALv2'
_namespaces = ['jpl']
_zipSafe = False
_keywords = 'plone zope ldap username password export import'
_testSuite = 'jpl.plone2ldap.tests.test_suite'
_extras = {}
_entryPoints = {} # Can't use console_scripts here because we have to do ``bin/instance run``
_requirements = [
'setuptools',
'python-ldap',
]
_classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Plone',
'License :: Other/Proprietary License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP',
]
# Setup Metadata
# --------------
#
# Nothing below here should require updating.
def _read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
_header = '*' * len(_name) + '\n' + _name + '\n' + '*' * len(_name)
_longDescription = _header + '\n\n' + _read('README.rst') + '\n\n' + _read('docs', 'INSTALL.txt') + '\n\n' \
+ _read('docs', 'HISTORY.txt')
open('doc.txt', 'w').write(_longDescription)
setup(
author=_author,
author_email=_authorEmail,
classifiers=_classifiers,
description=_description,
download_url=_downloadURL,
entry_points=_entryPoints,
extras_require=_extras,
include_package_data=True,
install_requires=_requirements,
keywords=_keywords,
license=_license,
long_description=_longDescription,
maintainer=_maintainer,
maintainer_email=_maintainerEmail,
name=_name,
namespace_packages=_namespaces,
packages=find_packages('src', exclude=['ez_setup', 'bootstrap']),
package_dir={'': 'src'},
test_suite=_testSuite,
url=_url,
version=_version,
zip_safe=_zipSafe,
)