File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+ )
You can’t perform that action at this time.
0 commit comments