-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
48 lines (45 loc) · 1.64 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
from os import path
from setuptools import setup, find_packages
from codecs import open
NAME = "gigawork"
with open(
path.join(path.abspath(path.dirname(__file__)), "README.md"), encoding="utf-8"
) as f:
long_description = f.read()
setup(
name=NAME,
version="1.4.2",
license="LGPLv3",
author="Guillaume Cardoen",
url="https://github.com/cardoeng/gigawork",
description="A tool for extracting GitHub Actions workflows",
long_description=long_description,
long_description_content_type="text/markdown",
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
keywords="gha workflows dataset tool",
packages=find_packages(include=[NAME]),
python_requires=">= 3.8",
install_requires=[
"click ~= 8.1.7",
"GitPython ~= 3.1.43",
"jsonschema ~= 4.21.0",
"ruamel.yaml ~= 0.18.6",
],
zip_safe=True,
entry_points={"console_scripts": [f"{NAME}={NAME}.main:main"]},
package_data={NAME: ["github-workflow.json"]},
)