22 lines
566 B
Python
22 lines
566 B
Python
|
#!/usr/bin/python
|
||
|
from setuptools import setup, find_packages
|
||
|
setup(
|
||
|
name = "gitosis",
|
||
|
version = "0.1",
|
||
|
packages = find_packages(),
|
||
|
|
||
|
author = "Tommi Virtanen",
|
||
|
author_email = "tv@eagain.net",
|
||
|
description = "software for hosting git repositories",
|
||
|
license = "GPL",
|
||
|
keywords = "git scm version-control ssh",
|
||
|
url = "http://eagain.net/software/gitosis/",
|
||
|
|
||
|
entry_points = {
|
||
|
'console_scripts': [
|
||
|
'gitosis-ssh = gitosis.ssh:main',
|
||
|
'gitosis-serve = gitosis.serve:main',
|
||
|
],
|
||
|
},
|
||
|
)
|