-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (35 loc) · 1.17 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
readme = open('README.md').read()
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name = 'barachiel',
version = '0.3',
description = 'Script for manage virtual machines in OpenStack',
long_description = readme,
author = 'Patryk Krawaczyński',
author_email = '[email protected]',
url = 'https://bitbucket.org/agresor/barachiel',
license = 'Apache License (2.0)',
keywords = 'openstack shell terminal manage machines',
install_requires = required,
data_files=[('', ['LICENSE', 'README.md'])],
zip_safe = False,
scripts = ['barachiel'],
classifiers = (
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Topic :: System :: Shells'
)
)