-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
68 lines (58 loc) · 2.12 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#!/usr/bin/env python
#pylint: disable-all
from __future__ import with_statement
from setuptools import setup, find_packages
from bifrost.version import get_version
with open('README.md') as f:
readme = f.read()
long_description = """
To find out what's new in this version of Bifrost, please see `the changelog`_.
----
%s
----
For more information, please see the Bifrost website or execute ``fab --help``.
""" % readme
with open('requirements.txt') as f:
install_requires = []
for line in f.read().splitlines():
install_requires.append(line)
setup(
name='Bifrost',
version=get_version('short'),
description='Bifrost is a simple, Pythonic tool for deployment and verifying Docker images.',
long_description=long_description,
author='Richard Hayes',
author_email='rich@justcompile.it',
url='http://justcompile.it',
packages=find_packages(),
package_data={'bifrost': ['_templates/*.tpl']},
test_suite='nose.collector',
tests_require=['nose', 'fudge<1.0', 'jinja2'],
install_requires=install_requires,
entry_points={
'console_scripts': [
'bifrost = bifrost.main:main',
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD 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',
],
)