-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·48 lines (42 loc) · 1.54 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from os.path import join as pjoin
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
__version__ = '0.1.0'
requirements = ['PyYAML', 'pykwalify']
test_requirements = []
setup(
name='plumbery-contrib',
version=__version__,
description="Configuration files to be used with plumbery",
long_description="A collection of reference use cases and related documentation",
author="Bernard Paques",
author_email='bernard.paques@gmail.com',
url='https://github.com/DimensionDataCBUSydney/plumbery-contrib',
include_package_data=True,
install_requires=requirements,
license='Apache License (2.0)',
zip_safe=False,
keywords='plumbery-contrib',
classifiers=[
# complete classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Plugins',
'Intended Audience :: Developers',
'Intended Audience :: Customer Service',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
]
)