forked from fabric-bolt/fabric-bolt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
65 lines (57 loc) · 1.59 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup_requires = []
install_requires = [
'django>=1.6,<1.7',
'south>=0.8.4,<0.9',
'pillow>=2.3.0,<2.4',
'django-stronghold>=0.2.4,<0.3',
'django-crispy-forms>=1.4.0,<1.5',
'django-custom-user>=0.3,<0.4',
'django-tables2>=0.14.0,<0.15',
'django-braces>=1.3.1,<1.4',
'django-sekizai>=0.7,<0.8',
'django-grappelli>=2.5.1,<2.6',
'fabric>=1.8.1,<1.9',
'logan>=0.5.9,<0.6',
]
dev_requires = [
'django_debug_toolbar>=1.0.1,<1.1',
'django-grappelli>=2.5.1,<2.6',
'django-debug-toolbar-template-timings>=0.5.5,<0.6',
'mock>=1.0.1,<1.1',
]
postgres_requires = [
'psycopg2>=2.5.2,<2.6',
]
mysql_requires = [
'MySQL-python>=1.2.5,<1.3',
]
setup(
name='fabric-bolt',
version='0.0.3',
author='Dan Dietz, Nathaniel Pardington, Jared Proffitt',
url='https://github.com/worthwhile/fabric-bolt',
description='A web interface to fabric deployments.',
long_description=open('README.rst').read(),
package_dir={'': 'src'},
packages=find_packages('src'),
zip_safe=False,
install_requires=install_requires,
extras_require={
'dev': install_requires + dev_requires,
'postgres': install_requires + postgres_requires,
'mysql': install_requires + mysql_requires,
},
license='MIT',
include_package_data=True,
entry_points={
'console_scripts': [
'fabric-bolt = fabric_bolt.utils.runner:main',
],
},
classifiers=[
'Framework :: Django',
'Programming Language :: Python'
],
)