-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.cfg
56 lines (52 loc) · 1.38 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
[metadata]
name = qmake2cmake
version = 1.0.5
description = QMake to CMake project file converter
url = https://wiki.qt.io/qmake2cmake
license = GPLv3
license_files = LICENSE.GPL3
author = The Qt Company
long_description = file: README.md
long_description_content_type = text/markdown
keywords=qmake, cmake, development
ext_modules = None
project_urls =
Bug Tracker = https://bugreports.qt.io
Source = https://codereview.qt-project.org/admin/repos/qt/qmake2cmake
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Topic :: Software Development :: Build Tools
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3 :: Only
[options]
packages = find:
package_dir =
=src
python_requires = >=3.7
install_requires =
pyparsing
portalocker
sympy
packaging
platformdirs
[options.packages.find]
where = src
[options.extras_require]
dev =
mypy
flake8
black
test =
pytest
pytest-cov
[options.entry_points]
console_scripts =
qmake2cmake = qmake2cmake.pro2cmake:main
qmake2cmake_all = qmake2cmake.run_pro2cmake:main