forked from juju/amulet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (28 loc) · 690 Bytes
/
setup.py
File metadata and controls
35 lines (28 loc) · 690 Bytes
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
import os
from setuptools import setup
version_file = os.path.abspath(
os.path.join(os.path.dirname(__file__), 'VERSION'))
with open(version_file) as v:
VERSION = v.read().strip()
install_requires = [
'requests',
'libcharmstore',
'PyYAML',
'path.py'
]
tests_require = [
'coverage',
'nose',
'pep8',
]
setup(
name='amulet',
version=VERSION,
description='Tools to help with writing Juju Charm Functional tests',
install_requires=install_requires,
package_data={'amulet': ['unit-scripts/amulet/*']},
author='Marco Ceppi',
author_email='marco@ceppi.net',
url="https://github.com/juju/amulet",
packages=['amulet'],
)