Skip to content

Commit 3f8c099

Browse files
committed
deprecation setup and dev_setup
deprecation setup and dev_setup add dev toml add stable toml update dev version
1 parent 70b5a2f commit 3f8c099

File tree

4 files changed

+152
-68
lines changed

4 files changed

+152
-68
lines changed
Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
1-
import setuptools
2-
3-
with open("README.md", "r") as README:
4-
long_description = README.read()
5-
6-
setuptools.setup(
7-
name="integration_testing_environment_dev",
8-
version="0.0.18",
9-
author="JE-Chen",
10-
author_email="zenmailman@gmail.com",
11-
description="Integration testing environment for web gui api load testing",
12-
long_description=long_description,
13-
long_description_content_type="text/markdown",
14-
url="https://github.com/JE-Chen/Integration-testing-environment",
15-
packages=setuptools.find_packages(),
16-
install_requires=[
17-
"je-editor"
18-
],
19-
extras_require={
20-
"another_extension": ["je-mail-thunder", "je-tk-plot"]
21-
},
22-
classifiers=[
23-
"Programming Language :: Python :: 3.7",
24-
"Development Status :: 2 - Pre-Alpha",
25-
"Environment :: Win32 (MS Windows)",
26-
"Environment :: MacOS X",
27-
"Environment :: X11 Applications",
28-
"License :: OSI Approved :: MIT License",
29-
"Operating System :: OS Independent"
30-
]
31-
)
32-
33-
# python dev_setup.py sdist bdist_wheel
34-
# python -m twine upload dist/*
1+
import setuptools
2+
3+
with open("../README.md", "r") as README:
4+
long_description = README.read()
5+
6+
setuptools.setup(
7+
name="integration_testing_environment_dev",
8+
version="0.0.18",
9+
author="JE-Chen",
10+
author_email="zenmailman@gmail.com",
11+
description="Integration testing environment for web gui api load testing",
12+
long_description=long_description,
13+
long_description_content_type="text/markdown",
14+
url="https://github.com/JE-Chen/Integration-testing-environment",
15+
packages=setuptools.find_packages(),
16+
install_requires=[
17+
"je-editor"
18+
],
19+
extras_require={
20+
"another_extension": ["je-mail-thunder", "je-tk-plot"]
21+
},
22+
classifiers=[
23+
"Programming Language :: Python :: 3.7",
24+
"Development Status :: 2 - Pre-Alpha",
25+
"Environment :: Win32 (MS Windows)",
26+
"Environment :: MacOS X",
27+
"Environment :: X11 Applications",
28+
"License :: OSI Approved :: MIT License",
29+
"Operating System :: OS Independent"
30+
]
31+
)
32+
33+
# python deprecation_dev_setup.py sdist bdist_wheel
34+
# python -m twine upload dist/*
Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
1-
import setuptools
2-
3-
with open("README.md", "r") as README:
4-
long_description = README.read()
5-
6-
setuptools.setup(
7-
name="integration_testing_environment",
8-
version="0.0.12",
9-
author="JE-Chen",
10-
author_email="zenmailman@gmail.com",
11-
description="Integration testing environment for web gui api load testing",
12-
long_description=long_description,
13-
long_description_content_type="text/markdown",
14-
url="https://github.com/JE-Chen/Integration-testing-environment",
15-
packages=setuptools.find_packages(),
16-
install_requires=[
17-
"je-editor",
18-
],
19-
extras_require={
20-
"another_extension": ["je-mail-thunder", "je-tk-plot"]
21-
},
22-
classifiers=[
23-
"Programming Language :: Python :: 3.7",
24-
"Development Status :: 2 - Pre-Alpha",
25-
"Environment :: Win32 (MS Windows)",
26-
"Environment :: MacOS X",
27-
"Environment :: X11 Applications",
28-
"License :: OSI Approved :: MIT License",
29-
"Operating System :: OS Independent"
30-
]
31-
)
32-
33-
# python dev_setup.py sdist bdist_wheel
34-
# python -m twine upload dist/*
1+
import setuptools
2+
3+
with open("../README.md", "r") as README:
4+
long_description = README.read()
5+
6+
setuptools.setup(
7+
name="integration_testing_environment",
8+
version="0.0.12",
9+
author="JE-Chen",
10+
author_email="zenmailman@gmail.com",
11+
description="Integration testing environment for web gui api load testing",
12+
long_description=long_description,
13+
long_description_content_type="text/markdown",
14+
url="https://github.com/JE-Chen/Integration-testing-environment",
15+
packages=setuptools.find_packages(),
16+
install_requires=[
17+
"je-editor",
18+
],
19+
extras_require={
20+
"another_extension": ["je-mail-thunder", "je-tk-plot"]
21+
},
22+
classifiers=[
23+
"Programming Language :: Python :: 3.7",
24+
"Development Status :: 2 - Pre-Alpha",
25+
"Environment :: Win32 (MS Windows)",
26+
"Environment :: MacOS X",
27+
"Environment :: X11 Applications",
28+
"License :: OSI Approved :: MIT License",
29+
"Operating System :: OS Independent"
30+
]
31+
)
32+
33+
# python deprecation_dev_setup.py sdist bdist_wheel
34+
# python -m twine upload dist/*

pyproject.toml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Rename to dev stable version
2+
# This is dev version
3+
[build-system]
4+
requires = ["setuptools>=61.0"]
5+
build-backend = "setuptools.build_meta"
6+
7+
[project]
8+
name = "integration_testing_environment"
9+
version = "0.0.18"
10+
authors = [
11+
{ name = "JE-Chen", email = "zenmailman@gmail.com" },
12+
]
13+
description = "Integration testing environment for WEB Testing、GUI Testing、API Testing、Load & Stress Testing"
14+
readme = { file = "README.md", content-type = "text/markdown" }
15+
requires-python = ">=3.7"
16+
license = { text = "MIT" }
17+
dependencies = [
18+
"je-editor"
19+
]
20+
classifiers = [
21+
"Programming Language :: Python :: 3.7",
22+
"Development Status :: 2 - Pre-Alpha",
23+
"Environment :: Win32 (MS Windows)",
24+
"Environment :: MacOS X",
25+
"Environment :: X11 Applications",
26+
"License :: OSI Approved :: MIT License",
27+
"Operating System :: OS Independent"
28+
]
29+
30+
[project.optional-dependencies]
31+
another_extension = ["je-mail-thunder", "je-tk-plot"]
32+
full_extension = [
33+
"je-mail-thunder", "je-tk-plot",
34+
"je_auto_control", "je_web_runner", "je_load_density", "je_api_testka"
35+
]
36+
only_test_extension = ["je_auto_control", "je_web_runner", "je_load_density", "je_api_testka"]
37+
38+
[project.urls]
39+
"Homepage" = "https://github.com/JE-Chen/Integration-testing-environment"
40+
41+
[tool.setuptools.packages]
42+
find = { }

stable.toml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Rename to build stable version
2+
# This is stable version
3+
[build-system]
4+
requires = ["setuptools>=61.0"]
5+
build-backend = "setuptools.build_meta"
6+
7+
[project]
8+
name = "integration_testing_environment"
9+
version = "0.0.12"
10+
authors = [
11+
{ name = "JE-Chen", email = "zenmailman@gmail.com" },
12+
]
13+
description = "Integration testing environment for WEB Testing、GUI Testing、API Testing、Load & Stress Testing"
14+
readme = { file = "README.md", content-type = "text/markdown" }
15+
requires-python = ">=3.7"
16+
license = { text = "MIT" }
17+
dependencies = [
18+
"je-editor"
19+
]
20+
classifiers = [
21+
"Programming Language :: Python :: 3.7",
22+
"Development Status :: 2 - Pre-Alpha",
23+
"Environment :: Win32 (MS Windows)",
24+
"Environment :: MacOS X",
25+
"Environment :: X11 Applications",
26+
"License :: OSI Approved :: MIT License",
27+
"Operating System :: OS Independent"
28+
]
29+
30+
[project.optional-dependencies]
31+
another_extension = ["je-mail-thunder", "je-tk-plot"]
32+
full_extension = [
33+
"je-mail-thunder", "je-tk-plot",
34+
"je_auto_control", "je_web_runner", "je_load_density", "je_api_testka"
35+
]
36+
only_test_extension = ["je_auto_control", "je_web_runner", "je_load_density", "je_api_testka"]
37+
38+
[project.urls]
39+
"Homepage" = "https://github.com/JE-Chen/Integration-testing-environment"
40+
41+
[tool.setuptools.packages]
42+
find = { }

0 commit comments

Comments
 (0)