-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathsetup.py
42 lines (40 loc) · 1.1 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
from setuptools import find_packages, setup # type: ignore
test_deps = ["coverage", "pytest", "hypothesis", "tox"]
setup(
name="polypyus",
version="1.1.0",
python_requires=">=3.6",
author="Jan Friebertshäuser",
author_email="[email protected]",
packages=find_packages(),
install_requires=[
"pony == 0.7.*",
"PyQt5 == 5.*",
"PyQt5-sip",
"pyelftools >= 0.25",
"intervaltree == 3.*",
"typer == 0.3.*",
"loguru == 0.5.*",
"tabulate == 0.8.*",
'dataclasses; python_version<"3.7"',
],
tests_require=test_deps,
extras_require={
"development": [
"PyQt5-stubs == 5.*",
"pylama",
"pre-commit == 2.11.*",
"black == 20.*",
],
"test": test_deps,
},
package_data={
"": ["style.css", "polypyus.ico", "Polypyus.png", "about.html", "LICENSE.txt"]
},
entry_points={
"console_scripts": [
"polypyus-cli=polypyus.cli:app",
"polypyus-gui=polypyus.gui:app",
],
},
)