forked from nmaier/TracAuthOpenId
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 723 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
PACKAGE = 'TracAuthOpenId'
VERSION = '0.3.1'
setup(
name=PACKAGE,
version=VERSION,
description='OpenID plugin for Trac',
license='Trac license',
author='Dalius Dobravolskas',
author_email='dalius@sandbox.lt',
url='http://bitbucket.org/Dalius/authopenid-plugin/overview/',
packages=['authopenid'],
entry_points={'trac.plugins': '%s = authopenid' % PACKAGE},
include_package_data = True,
package_data={'authopenid': ['templates/*.html', 'htdocs/css/*.css',
'htdocs/images/*', 'htdocs/js/*']},
install_requires = [
"python-openid>=2.1.0"
],
)