-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
39 lines (35 loc) · 1.09 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
#!/usr/bin/env python
import os.path
from distutils.core import setup
# Utility function to read the README file.
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = 'TracDocs',
version = '0.3.1',
description="A Trac plugin for RCS-backed documentation",
long_description = read('README.md'),
author = "John Benediktsson",
author_email = '[email protected]',
url = "http://github.com/trac-hacks/tracdocs",
download_url = "http://github.com/trac-hacks/tracdocs/zipball/master#egg=TracDocs-0.3.1",
packages=['tracdocs'],
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Trac",
"License :: OSI Approved :: BSD License",
],
package_data={
'tracdocs': [
'htdocs/*.css',
'htdocs/*.js',
'templates/*.html'
]
},
entry_points = {
'trac.plugins': [
'tracdocs.web_ui = tracdocs.web_ui',
]
},
dependency_links = ['http://github.com/trac-hacks/tracdocs/zipball/master#egg=TracDocs-0.3.1']
)