This repository has been archived by the owner on May 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
53 lines (50 loc) · 1.52 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from setuptools import find_packages
from setuptools import setup
with open("README.md") as fd:
long_description = fd.read()
setup(
name="jobs_done10",
provides=["jobs_done10"],
use_scm_version={"write_to": "src/jobs_done10/_version.py"},
setup_requires=["setuptools_scm"],
python_requires=">=3.10",
install_requires=[
"attrs",
"click",
"flask",
"gunicorn",
"pygments",
"python-dotenv",
"python-jenkins",
"pyyaml",
],
extras_require={
"dev": [
"pytest-regressions",
"pre-commit",
"pytest-mock",
"requests-mock",
]
},
entry_points={"console_scripts": ["jobs_done=jobs_done10.cli:jobs_done"]},
packages=find_packages("src"),
package_dir={
"": "src",
},
author="ESSS",
author_email="[email protected]",
url="https://github.com/ESSS/jobs_done10",
license="MIT",
description="Job's Done uses a .jobs_done.yaml file in your repository to create Continuous Integration jobs on Jenkins.",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="jenkins continuous integration ci jobs job build",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development",
],
)