-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
43 lines (38 loc) · 1.2 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
from setuptools import setup, find_packages
import os
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()
version = '1.0.0'
install_requires = [
'django-auth-ldap',
'django-appconf'
]
setup(
name='django-remote-auth-ldap',
version=version,
description="REMOTE_USER authentication using LDAP",
long_description=README,
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Framework :: Django',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP',
],
keywords='',
author='Austin Morton',
author_email='[email protected]',
url='https://github.com/apmorton/django-remote-auth-ldap',
license='MIT',
packages=find_packages('src'),
package_dir={'': 'src'},
zip_safe=False,
install_requires=install_requires,
test_suite='nose.collector'
)