forked from seveas/goblet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (21 loc) · 878 Bytes
/
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
#!/usr/bin/python
from distutils.core import setup
setup(name = "goblet",
version = "0.3.1",
author = "Dennis Kaarsemaker",
author_email = "[email protected]",
url = "http://seveas.github.com/goblet",
description = "Git web interface using libgit2 and flask",
packages = ["goblet"],
package_data = {'goblet': ['themes/*/*/*.*', 'themes/*/*/*/*']},
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
'Topic :: Software Development',
'Topic :: Software Development :: Version Control',
]
)