forked from theCapypara/riptide-engine-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (39 loc) · 1.42 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
__version__ = '0.7.6'
from glob import glob
from setuptools import setup, find_packages
# README read-in
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
# END README read-in
setup(
name='riptide-engine_docker',
version=__version__,
packages=find_packages(),
package_data={'riptide_engine_docker': ['assets/*']},
description='Tool to manage development environments for web applications using containers - Docker Implementation',
long_description=long_description,
long_description_content_type='text/x-rst',
url='https://github.com/theCapypara/riptide-engine-docker/',
install_requires=[
'riptide-lib >= 0.7, < 0.8',
'docker >= 4.1'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
entry_points='''
[riptide.engine]
docker=riptide_engine_docker.engine:DockerEngine
[riptide.engine.tests]
docker=riptide_engine_docker.tests.integration.tester:DockerEngineTester
''',
)