|
11 | 11 | # |
12 | 12 | ############################################################################## |
13 | 13 |
|
14 | | -import os |
15 | | - |
16 | 14 | from setuptools import setup |
17 | 15 |
|
18 | 16 |
|
19 | | -NAME = 'Products.LDAPUserFolder' |
20 | | - |
21 | | - |
22 | | -def read(name): |
23 | | - with open(os.path.join(os.path.dirname(__file__), name)) as fp: |
24 | | - return fp.read() |
25 | | - |
26 | | - |
27 | | -setup( |
28 | | - name='Products.LDAPUserFolder', |
29 | | - version='6.1.dev0', |
30 | | - description='A LDAP-enabled Zope user folder', |
31 | | - long_description=read('README.rst'), |
32 | | - long_description_content_type='text/x-rst', |
33 | | - classifiers=[ |
34 | | - "Development Status :: 6 - Mature", |
35 | | - "Environment :: Web Environment", |
36 | | - "Framework :: Zope", |
37 | | - "Framework :: Zope :: 5", |
38 | | - "Intended Audience :: Developers", |
39 | | - "License :: OSI Approved :: Zope Public License", |
40 | | - "Operating System :: OS Independent", |
41 | | - "Programming Language :: Python :: 3", |
42 | | - "Programming Language :: Python :: 3.10", |
43 | | - "Programming Language :: Python :: 3.11", |
44 | | - "Programming Language :: Python :: 3.12", |
45 | | - "Programming Language :: Python :: 3.13", |
46 | | - "Programming Language :: Python :: 3.14", |
47 | | - "Programming Language :: Python :: Implementation :: CPython", |
48 | | - "Topic :: Internet :: WWW/HTTP :: Site Management", |
49 | | - "Topic :: Software Development", |
50 | | - "Topic :: System :: Systems Administration ::" |
51 | | - "Authentication/Directory :: LDAP", |
52 | | - ], |
53 | | - keywords='web application server zope authentication ldap', |
54 | | - author="Jens Vagelpohl and contributors", |
55 | | - author_email="jens@dataflake.org", |
56 | | - url="https://github.com/dataflake/Products.LDAPUserFolder", |
57 | | - project_urls={ |
58 | | - 'Documentation': 'https://productsldapuserfolder.readthedocs.io/', |
59 | | - 'Issue Tracker': ( |
60 | | - 'https://github.com/dataflake/' |
61 | | - 'Products.LDAPUserFolder/issues'), |
62 | | - 'Sources': 'https://github.com/dataflake/Products.LDAPUserFolder', |
63 | | - }, |
64 | | - license="ZPL-2.1", |
65 | | - python_requires='>=3.10', |
66 | | - install_requires=[ |
67 | | - 'Zope >= 5', |
68 | | - 'dataflake.cache', |
69 | | - 'dataflake.fakeldap', |
70 | | - 'python-ldap >= 3.3', |
71 | | - ], |
72 | | - extras_require={ |
73 | | - 'exportimport': ['Products.GenericSetup >= 2.0b1'], |
74 | | - 'docs': [ |
75 | | - 'Sphinx', |
76 | | - 'furo', |
77 | | - 'repoze.sphinx.autointerface', |
78 | | - ], |
79 | | - }, |
80 | | -) |
| 17 | +setup() |
0 commit comments