Skip to content

Commit 91137a7

Browse files
committed
setup file
1 parent 80cc5c1 commit 91137a7

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

setup.py

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
import setuptools
2+
3+
with open("README.md", "r", encoding="utf-8") as fh:
4+
long_description = fh.read()
5+
6+
setuptools.setup(
7+
name="localstack-utils",
8+
description='An easy way to inclute Localstack with unit tests',
9+
version="0.0.1",
10+
author='Waldemar Hummer',
11+
author_email='waldemar.hummer@gmail.com',
12+
long_description=long_description,
13+
long_description_content_type="text/markdown",
14+
url="",
15+
project_urls={
16+
"Bug Tracker": "",
17+
},
18+
license='Apache License 2.0',
19+
classifiers=[
20+
"Programming Language :: Python :: 3",
21+
"Operating System :: OS Independent",
22+
"License :: OSI Approved :: Apache Software License",
23+
"Topic :: Software Development :: Testing",
24+
],
25+
package_dir={"": "localstack_utils"},
26+
packages=setuptools.find_packages(where="localstack_utils"),
27+
python_requires=">=3.6",
28+
)

0 commit comments

Comments
 (0)