-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 722 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
setup(name="gitserv",
version="1.0",
# url='http://github.com/michaelwisely/git-server',
license='BSD',
description="A Twisted Conch SSH server for git access",
author='Michael Wisely',
packages=find_packages('src'),
package_dir={'': 'src'},
install_requires=['setuptools',
'Twisted==13.0.0',
'pycrypto',
'pyasn1',
'dulwich>=0.8.6',
'jsonschema',
'requests',
],
entry_points={
'console_scripts': ['gitserv = gitserv.main:run'],
},
)