-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
32 lines (29 loc) · 922 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
24
25
26
27
28
29
30
31
import os
from setuptools import setup, find_packages
setup(name='GitWeb',
version='0.4',
description='WSGI application to serve a git repository',
long_description=open('README.txt').read(),
classifiers=[
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
author='Gael Pasgrimaud',
author_email='gael@gawel.org',
url='https://github.com/gawel/GitWeb',
licence='GPL',
keywords='web',
py_modules = ['gitweb', 'subprocessio'],
packages=find_packages(exclude=['tests']),
include_package_data=True,
zip_safe=False,
install_requires=['WebOb'],
tests_require=[],
entry_points = """\
[paste.app_factory]
main = gitweb:make_dir_app
dir = gitweb:make_dir_app
repo = gitweb:make_app
""",
)