-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 813 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
28
29
30
"""
Setup file to package the API
"""
from setuptools import find_packages, setup
setup(
name="simple-soap-tests",
version="1.0.0",
description="Simple soap tests",
long_description="Nothing fancy",
url="https://localhost",
install_requires=[
],
keywords="utilities",
packages=find_packages(),
include_package_data=True,
python_requires=">=3.8",
classifiers=[
"Development Status :: MATURE",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Topic :: Utilities",
"Typing :: Typed",
],
)