-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
51 lines (48 loc) · 1.7 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
49
50
51
#!/usr/bin/env python
import codecs
import os
from setuptools import setup, find_packages
version = __import__('blues').__version__
setup(
name='Blues',
version=version,
description='Blueprints for fabric',
long_description=codecs.open(
os.path.join(
os.path.dirname(__file__),
'README.md'
)
).read(),
author='Jonas Lundberg',
author_email='jonas@5monkeys.se',
url='https://github.com/5monkeys/blues',
download_url='https://github.com/5monkeys/blues/tarball/%s' % version,
keywords=['fabric', 'blueprints', 'deploy', 'build'],
license='MIT',
packages=find_packages(exclude='tests'),
install_requires=['ghp-import'],
include_package_data=False,
zip_safe=False,
test_suite='runtests.main',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Unix',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Clustering',
'Topic :: System :: Software Distribution',
'Topic :: System :: Systems Administration',
]
)