generated from keploy/template
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
27 lines (25 loc) · 973 Bytes
/
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
from setuptools import setup, find_packages
VERSION = '2.0.0-alpha36'
DESCRIPTION = 'Keploy'
LONG_DESCRIPTION = 'Keploy Python SDK'
# Setting up
setup(
name="keploy",
version=VERSION,
author="Keploy Inc.",
author_email="[email protected]",
description="Run your unit tests with Keploy",
long_description="This module allows you to run your unit tests along with pytest and get coverage for the same using Keploy",
packages=find_packages(where='src'),
package_dir={'': 'src'},
keywords=['keploy', 'python', 'sdk'],
classifiers= [
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
]
)