-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (41 loc) · 1.28 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
#!/usr/bin/env python
import subprocess
import setuptools
setup_info = dict(
name = 'yolops',
version = '0.0.3',
description = 'Multipurpose devops tool',
long_description = '' +
'Yolops is a devops toolbox.'
'',
license = 'MIT',
url = 'https://github.com/dontnod/yolops',
author = 'Dontnod Entertainment',
author_email = '[email protected]',
packages = setuptools.find_packages(include=['yolops', 'yolops.*']),
install_requires = [
'click',
],
entry_points = {
'console_scripts' : [ 'yolops = yolops.main:main' ],
},
# See list at https://pypi.python.org/pypi?:action=list_classifiers
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
keywords = 'yolo devops',
)
setuptools_info = dict(
zip_safe = True,
)
setuptools.setup(**setup_info)