-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
47 lines (44 loc) · 1.31 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
#!/usr/bin/env python
"""TracDjangoAuth, setuptools configuration file"""
from setuptools import setup
setup(
name="TracDjangoAuth",
version="0.4.0",
author="Ville Korhonen",
author_email="ville@xd.fi",
url="https://github.com/ypcs/TracDjangoAuth",
download_url="https://github.com/ypcs/TracDjangoAuth/tarball/master",
description="Trac Authentication against Django's userdb",
keywords=[
'AccountManager',
'acct_mgr',
'authentication',
'Django',
'Trac',
],
packages=[
'tracdjangoauth',
],
install_requires=[
'Trac>=0.11',
'TracAccountManager>=0.2',
'Django>=1.7',
],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Framework :: Django",
"Framework :: Trac",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: System :: Systems Administration :: Authentication/Directory",
],
entry_points={
'trac.plugins': [
'tracdjangoauth.auth_django = tracdjangoauth.auth_django',
]
},
)