-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1.26 KB
/
setup.py
File metadata and controls
34 lines (32 loc) · 1.26 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
import os
from setuptools import setup
def read(fname1, fname2):
if os.path.exists(fname1):
fname = fname1
else:
fname = fname2
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "profab",
version = "0.5.2",
author = "Proteus Technologies Infrastructure team",
author_email = "infrastructure@proteus-tech.com",
url = 'https://github.com/Proteus-tech/profab',
description = ("Automated tools for engaging with server infrastructure on AWS"),
long_description = read('README','README.markdown'),
license = "Boost Software License - Version 1.0 - August 17th, 2003",
keywords = "devops ec2 fabric boto ubuntu",
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved",
],
packages = ['profab', 'profab.role',
'profab.role.ami', 'profab.role.munin'],
scripts = [
'bin/pf-server-list', 'bin/pf-server-role-add',
'bin/pf-server-start', 'bin/pf-server-terminate', 'bin/pf-server-upgrade'],
install_requires = ['simplejson', 'fabric >=1.4', 'boto >=2.0,!=2.2.0'],
)