-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
55 lines (50 loc) · 1.52 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python
from setuptools import setup, find_packages
import platform
from os.path import join, dirname
import os
long_description = open(join(dirname(__file__), "README.rst")).read()
name='git-remote-couch'
version='0.1a1'
setup(
name=name,
url='http://github.com/peritus/'+name,
version=version,
license='Beerware',
description='a git-remote-helper that allows you to push source code into a CouchDB',
author='Filip Noetzel',
author_email='[email protected]',
long_description=long_description,
packages=['git_remote_couch'],
package_dir={'': 'src',},
namespace_packages=[],
include_package_data = True,
install_requires=[
'CouchDB==0.7'
],
zip_safe = False,
extras_require = dict(
test=[
'junitxml==0.5',
'livetest==0.3dev',
'lovely.testlayers==0.1.0a7',
'python-subunit==0.0.6',
'zope.testing',
]),
entry_points = {
'console_scripts' : [
'git-remote-http+couch = git_remote_couch:main',
]
},
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Operating System :: POSIX :: BSD',
'Operating System :: POSIX :: Linux',
'Topic :: Software Development :: Version Control',
]
)