-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
81 lines (71 loc) · 2.09 KB
/
Copy pathsetup.py
File metadata and controls
81 lines (71 loc) · 2.09 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/usr/bin/env python
from os import path
import versioneer
import sys
if sys.version_info < (3,0):
from io import open
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
requires = []
setup_options = dict(
name='dockerutils',
cmdclass=versioneer.get_cmdclass(),
version=versioneer.get_version(),
description='Docker Utilities/Patterns for Python Projects',
long_description=long_description,
long_description_content_type="text/markdown",
author='Resero-Labs',
url='https://github.com/resero-labs/docker-utils.git',
scripts=[
'scripts/create-dock',
'scripts/build-image',
'scripts/destroy-dock',
'scripts/dock',
'scripts/dock-sync',
'scripts/genversion',
'scripts/ls-dock',
'scripts/nb-dock',
'scripts/publish-image',
'scripts/register-dock',
'scripts/run-image',
'scripts/run-notebook',
'scripts/ssh-dock',
'scripts/start-dock',
'scripts/stop-dock',
'scripts/transfer-image',
'scripts/unregister-dock'
],
include_package_data=True,
packages=find_packages(exclude=['tests*']),
license="MIT License",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
install_requires=[
'ConfigParser;python_version<="2.7"',
'awscli',
'boto3',
'future'
],
extras_require={
'dev': [
'wheel>=0.29'
],
'test': [
'pytest>=3.0',
'pytest-cov>=2.4',
'pylint>=1.8.1'
],
},
)
setup(**setup_options)