-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
66 lines (59 loc) · 2.05 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
import os
from setuptools import setup
extra_packages = []
if os.name == 'nt':
extra_packages.append('pypiwin32')
__version__ = '5.1'
# Get the long description from the README file
def readme():
here = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
return f.read()
setup(
name='stakkr',
version=__version__,
description='''
A configurable stack based on docker to run any combination
of services (PHP, MySQL, Apache, Nginx, Mongo, etc..)''',
long_description_content_type='text/x-rst',
long_description=readme(),
url='http://github.com/stakkr-org/stakkr',
author='Emmanuel Dyan',
author_email='emmanueldyan@gmail.com',
license='Apache 2.0',
packages=['stakkr'],
py_modules=['stakkr'],
python_requires='>=3.6',
entry_points='''[console_scripts]
stakkr=stakkr.cli:main
stakkr-init=stakkr.setup:init
stakkr-compose=stakkr.stakkr_compose:cli''',
include_package_data=True,
install_requires=[
'docker-compose==1.29.2',
'click==8.0.0',
'click-plugins==1.1.1',
'clint==0.5.1',
'PyYAML==5.4.1',
'anyconfig==0.10.1',
'GitPython==3.1.17'
] + extra_packages,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development',
'Topic :: System :: Distributed Computing',
'Topic :: System :: Systems Administration',
],
keywords='docker,docker-compose,python,stack,development,lamp,vagrant',
)