-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
50 lines (46 loc) · 1.59 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
# $Id: setup.py 76 2009-03-11 21:10:23Z s0undt3ch $
import re
from setuptools import setup, find_packages
PACKAGE = 'TracWikiNotification'
VERSION = '0.4.4'
AUTHOR = 'Pedro Algarvio'
AUTHOR_EMAIL = '[email protected]'
SUMMARY = "Trac Plugin to allow email notification of changes on wiki pages"
HOME_PAGE = 'https://trac-hacks.org/wiki/WikiNotificationPlugin'
LICENSE = 'BSD'
setup(
name=PACKAGE,
version=VERSION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=HOME_PAGE,
download_url='https://pypi.org/project/TracWikiNotification',
description=SUMMARY,
long_description=re.sub(r'(\.\.[\s]*[\w]*::[\s]*[\w+]*\n)+', r'::\n',
open('README.rst').read()),
license=LICENSE,
platforms="OS Independent - Anywhere Python and Trac >=0.11 runs.",
install_requires=['Trac'],
packages=find_packages(),
package_data={'WikiNotification': ['templates/*.html', 'templates/*.txt']},
entry_points={
'trac.plugins': [
'wikinotification = WikiNotification',
]
},
keywords="trac plugin wiki notification",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Trac',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Text Processing',
'Topic :: Utilities',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
]
)