-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
38 lines (35 loc) · 1.04 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
from setuptools import setup, find_packages
from touchstone import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='touchstone-testing',
version=__version__,
description='Touchstone is a testing framework for your services that focuses on end-to-end and exploratory testing.',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/shane-jansen/touchstone',
author='Shane Jansen',
author_email='shanejjansen@gmail.com',
packages=find_packages(exclude=['tests']),
install_requires=[
'pyfiglet~=0.8',
'click~=7.0',
'pika~=1.1',
'pyyaml~=5.4',
'pymongo~=3.10',
'pymysql~=0.9.3',
'minio~=5.0.7',
'redis~=3.5.3',
'psycopg2-binary~=2.9.3'
],
entry_points={
'console_scripts': [
'touchstone = touchstone.cli:cli'
]
},
classifiers=[
'Programming Language :: Python :: 3'
],
python_requires='>=3.6'
)