-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
50 lines (48 loc) · 1.71 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
'''
@copyright: 2022 - Symas Corporation
'''
from setuptools import setup
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='py-fortress',
version='0.1.7',
python_requires='>=3.6',
description='RBAC for Python 3',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/shawnmckinney/py-fortress',
author='Symas Corporation',
author_email='smckinney@symas.com',
license='Apache License 2.0',
packages=['rbac', 'rbac.cli', 'rbac.ldap', 'rbac.model', 'rbac.util', 'rbac.tests', 'doc'],
package_data={
# If any package contains *.txt or *.rst files, include them:
'': ['*.md'],
},
install_requires=[
'python-ldap >= 3.4.2',
'six >= 1.16.0',
'ldappool >= 3.0.0'
],
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Topic :: Security',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='authorization rbac security',
entry_points={
'console_scripts': [
'initldap = rbac.tests.test_dit_dao:main',
'cli = rbac.cli.cli:main',
'clitest = rbac.cli.cli_test_auth:main',
],
},
data_files=[('conf', ['py-fortress-cfg.json.sample'])],
zip_safe=False)