forked from Mierdin/pyflex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (36 loc) · 1.3 KB
/
setup.py
File metadata and controls
40 lines (36 loc) · 1.3 KB
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
from setuptools import setup, find_packages
from distutils.command.install import install as _install
import sys
import platform
if not sys.version_info[0] == 2:
print "Sorry, Python 3 is not supported (yet)"
exit()
if sys.version_info[0] == 2 and sys.version_info[1] < 6:
print "Sorry, Python < 2.6 is not supported"
exit()
setup(name='pyflex',
version='1.0.0',
description="Python framework for building and maintaining a Flexpod environment",
author="Matt Oswalt",
author_email="[email protected]",
url="https://github.com/Mierdin/pyflex",
packages=find_packages('.'),
install_requires=[
"setuptools>0.6",
"paramiko>=1.7.7.1",
"lxml>3.0",
"jinja2>=2.7.1",
"PyYAML>=3.10",
"configobj>=5.0.5"
],
license="apache",
platforms=["Linux; OS X; Windows"],
keywords=('Flexpod'),
classifiers=[
'Programming Language :: Python',
'Topic :: System :: Networking',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)