-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
37 lines (34 loc) · 1.01 KB
/
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
31
32
33
34
35
36
37
import os
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="miniboss",
version="0.4.5",
author="Ulas Turkmen",
description="Containerized app testing framework",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
"click>7",
"docker>4",
"furl>2",
"requests>2",
"attrs>20",
"python-slugify>6.0.0",
],
python_requires=">3.8.0",
tests_require=["pytest>5.4"],
packages=["miniboss"],
package_data={"miniboss": ["py.typed"]},
url="https://github.com/afroisalreadyinu/miniboss",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Testing",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
],
)