-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
39 lines (37 loc) · 1.45 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
from glob import glob
from setuptools import find_packages, setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='django-ldap-academia-ou-manager',
version='v0.9.3',
description=('Django Admin manager for Academia Users '
'with eduPerson schema and '
'SCHAC (SCHema for ACademia).'),
long_description=readme(),
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3 :: Only',
'Operating System :: POSIX :: Linux'
],
url='https://github.com/peppelinux/django-ldap-academia-ou-manager',
author='Giuseppe De Marco',
author_email='giuseppe.demarco@unical.it',
license='BSD',
packages=find_packages(),
package_data={'': ['*.html']},
data_files=[
('', glob('ldap_peoples/templates/*/*/*.html')),
],
include_package_data=True,
dependency_links=['https://github.com/peppelinux/django-ldapdb/tarball/master#egg=peppelinux_django_ldapdb-1.4',],
install_requires=[
'bcrypt>=3.1.4',
'Django>3,<4',
'django-admin-rangefilter>=0.3.9',
'passlib>=1.7.1',
'chardet',
],
)