forked from presslabs/pyolite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 1.07 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
from setuptools import setup, find_packages
requires = ['sh==1.09', 'Unipath==1.0', 'argparse==1.2.1',
'async==0.6.1', 'coverage==3.7.1', 'gitdb==0.5.4',
'mock==1.0.1', 'nose==1.3.3', 'six==1.6.1', 'smmap==0.8.2',
'spec==0.11.1', 'wsgiref==0.1.2']
setup(name="pyolite",
version="1.4.1",
platforms='any',
packages=find_packages(),
include_package_data=True,
install_requires=requires,
author="Vlad Temian",
author_email="vlad@presslabs.com",
url="https://github.com/Presslabs/pyolite",
description="Python wrapper for gitolite",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Topic :: System :: Networking',
'Programming Language :: Python :: 2.7',
])