This repository was archived by the owner on May 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
70 lines (65 loc) · 1.96 KB
/
setup.py
File metadata and controls
70 lines (65 loc) · 1.96 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import sys
import os
from setuptools import setup, find_packages
def read(*paths):
"""Build a file path from *paths* and return the contents."""
with open(os.path.join(*paths), 'r') as f:
return f.read()
here = os.path.abspath(os.path.dirname(__file__))
# put package test requirements here
requirements = [
"sh",
"requests",
"jinja2",
"multipledispatch",
"docker-py",
"arrow",
"PyYaml",
"colorlog",
"werkzeug",
"json-rpc",
"prompt_toolkit",
"pygments",
"stackhut-client >= 0.1.1",
]
# put package test requirements here
test_requirements = []
setup(
name='stackhut-toolkit',
version='0.6.1',
description="Deploy classes as Microservices",
long_description=read('readme_pip.rst'),
license='Apache',
author="StackHut",
author_email='stackhut@stackhut.com',
url='https://github.com/stackhut/stackhut-toolkit',
# download_url = 'https://github.com/stackhut/stackhut-tool/tarball/0.1.0'
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests", ""]),
include_package_data=True,
entry_points={
'console_scripts': [
'stackhut = stackhut_toolkit.__main__:main',
],
},
install_requires=requirements,
zip_safe=False,
test_suite='tests',
tests_require=test_requirements,
keywords='stackhut',
platforms=['POSIX'],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Environment :: Console',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development',
#'Private :: Do Not Upload', # hack to force invalid package for upload
],
)