-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (31 loc) · 950 Bytes
/
setup.py
File metadata and controls
38 lines (31 loc) · 950 Bytes
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
import os
from setuptools import setup, find_packages
path = os.path.abspath(os.path.dirname(__file__))
try:
with open(os.path.join(path, 'README.md')) as f:
long_description = f.read()
except Exception as e:
long_description = "docker-compose helper"
setup(
name = "dc-help",
version = "0.1.2",
keywords = ["pip", "docker-compose", "cli", "docker", "helper"],
description = "docker-compose helper",
long_description = long_description,
long_description_content_type='text/markdown',
python_requires=">=2.7",
license = "MIT Licence",
url = "https://github.com/perfectstorm88/dchelp",
author = "perfectstorm88",
author_email = "perfectstorm88@163.com",
packages=find_packages(),
include_package_data = True,
install_requires = [""],
platforms = "any",
scripts = [],
entry_points = {
'console_scripts': [
'dc-help=dchelp:main_cli'
]
}
)