-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
29 lines (26 loc) · 1.04 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
from setuptools import setup, find_packages
requires = ['sh==1.09', 'Unipath==1.1', 'argparse==1.2.1',
'coverage==3.7.1', 'mock==1.0.1', 'nose==1.3.3',
'six==1.6.1', 'spec==0.11.1']
setup(name="pyolite",
version='1.6.3',
platforms='any',
packages=find_packages(),
include_package_data=True,
install_requires=requires,
author="Vlad Temian",
author_email="[email protected]",
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',
'Programming Language :: Python :: 3.5'
])