-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
83 lines (78 loc) · 2.17 KB
/
setup.cfg
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[metadata]
name = air2phin
version = attr: air2phin.__version__
url = https://github.com/WhaleOps/air2phin
description = Air2phin is a tool for migrating Airflow DAGs to DolphinScheduler Python API.
long_description = file: README.md
long_description_content_type = text/markdown
author = Jay Chung
author_email = [email protected]
license = Apache License 2.0
license_files =
file: LICENSE
keywords =
all
# complete classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers =
Development Status :: 3 - Alpha
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
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
Programming Language :: Python :: Implementation :: CPython
Environment :: Console
Topic :: Software Development :: Libraries :: Python Modules
project_urls =
Source = https://github.com/WhaleOps/air2phin
Issue Tracker = https://github.com/WhaleOps/air2phin/issues
Documentation = https://air2phin.readthedocs.io
Changelog = https://github.com/WhaleOps/air2phin/releases
[options]
python_requires = >=3.6
include_package_data = True
zip_safe = true
platforms = any
package_dir =
=src
packages =
find_namespace:
install_requires =
libcst
PyYaml
tqdm
[options.packages.find]
where=src
[options.package_data]
air2phin =
rules/**/*.yaml
[options.entry_points]
console_scripts =
air2phin = air2phin.cli.command:main
[options.extras_require]
fake =
sqlalchemy==2.0.4
dev =
# style
black>=22.8
flake8>=4.0
flake8-docstrings>=1.6
flake8-black>=0.2
isort>=5.10
autoflake>=1.4
# test
pytest>=6.2
pytest-cov>=3.0
# docs
sphinx>=4.3
sphinx_rtd_theme>=1.0
sphinx-copybutton>=0.4.0
sphinx-argparse>=0.3.2
sphinx-github-changelog