forked from ypcs/TracDjangoAuth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (43 loc) · 1.3 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
#!/usr/bin/env python
from setuptools import setup
setup(
name = "TracDjangoAuth",
version = "0.1.3",
author = "Ville Korhonen",
author_email = "[email protected]",
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.0',
],
classifiers = [
"Development Status :: 3 - Alpha",
"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',
]
},
)