-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 734 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 734 Bytes
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
from setuptools import setup
setup(
name="pytchuka",
version="0.0.8",
author="",
author_email="",
install_requires=["marshmallow==3.3.0", "falcon==2.0.0", "falcon-multipart==0.2.0", "deepdiff==4.0.9"],
description="A very simple http mock server",
license="MIT",
keywords="mock server http",
url="",
packages=['pytchuka'],
entry_points={
'console_scripts': [
'pytchuka = pytchuka.pytchuka:main',
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
],
)