forked from KmolYuan/Pyslvs-UI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
61 lines (55 loc) · 1.41 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
[metadata]
name = pyslvs_ui
version = attr: pyslvs_ui.__version__
description = An open source planar linkage mechanism simulation and mechanical synthesis system.
long_description = file: README.md
long_description_content_type = text/markdown
keywords = pyslvs,pyqt5,gui,mechanical-engineering,2d
license = AGPL
author = Yuan Chang
author_email = [email protected]
url = https://github.com/KmolYuan/Pyslvs-UI
classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Environment :: X11 Applications :: Qt
Topic :: Scientific/Engineering
License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
Operating System :: OS Independent
Typing :: Typed
[bdist_wheel]
universal = 1
[options]
zip_safe = False
include_package_data = True
packages = find:
python_requires = >=3.8
install_requires =
requests
qtpy
pyqt5
ezdxf
numpy
matplotlib
openpyxl
lark-parser
pyyaml
qrcode
pyslvs@git+https://github.com/KmolYuan/pyslvs.git@master
[options.extras_require]
slvs = python-solvespace
splev = scipy
[options.package_data]
pyslvs_ui = py.typed
[options.entry_points]
console_scripts =
pyslvs=pyslvs_ui.__main__:main
[mypy]
pretty = True
show_error_codes = True
show_column_numbers = True
ignore_missing_imports = True
allow_redefinition = True
warn_redundant_casts = True
warn_unreachable = True
strict_equality = True