This repository has been archived by the owner on May 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
55 lines (51 loc) · 1.86 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
55
import io
import re
from collections import OrderedDict
from setuptools import setup, find_packages
with io.open('README.rst', 'rt', encoding='utf8') as f:
readme = f.read()
# Make sure that the version of the package always matches the version of the
# tool. The version of the __init__.py is updated with the make release command.
with io.open('juniper/__init__.py', 'rt', encoding='utf8') as f:
version = re.search(r'__version__ = \'(.*?)\'', f.read()).group(1)
setup(
name="juniper",
version=version,
author='EAB Tech',
author_email='[email protected]',
description="Tool to streamline the build of python lambda functions.",
long_description=readme,
project_urls=OrderedDict((
('Documentation', 'https://eabglobal.github.io/juniper/'),
('Code', 'https://github.com/eabglobal/juniper'),
('Issue tracker', 'https://github.com/eabglobal/juniper/issues'),
)),
license='Apache Software License',
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts': ['juni=juniper.cli:main'],
},
python_requires='>=3.6',
test_suite="tests",
install_requires=[
'click>=5.1',
'click-log',
'PyYAML >= 4.3, <= 5.3',
'Jinja2>=2.10',
'docker[ssh] >= 5',
'docker-compose >= 1.29'
],
setup_requires=["pytest-runner"],
tests_require=["pytest"],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Build Tools',
])