forked from ethidium/pm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
68 lines (63 loc) · 1.59 KB
/
setup.py
File metadata and controls
68 lines (63 loc) · 1.59 KB
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
import pathlib
import alqtendpy.compileui
import setuptools
import versioneer
alqtendpy.compileui.compile_ui(
directory_paths=[pathlib.Path(__file__).parent / "src" / "epcpm"],
)
setuptools.setup(
name="epcpm",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author="EPC Power Corp.",
classifiers=[
(
"License :: OSI Approved :: "
"GNU General Public License v2 or later (GPLv2+)"
)
],
packages=setuptools.find_packages("src"),
package_dir={"": "src"},
include_package_data=True,
entry_points={
"gui_scripts": [
"epcpm = epcpm.__main__:_entry_point",
],
"console_scripts": [
"epcpmcli = epcpm.cli.main:main",
"epcparameterstoc = epcpm.cli.parameterstoc:cli",
"epcimportsym = epcpm.cli.importsym:cli",
"epcexportsym = epcpm.cli.exportsym:cli",
"epcexportdocx = epcpm.cli.exportdocx:cli",
"epcconvertparameters = epcpm.cli.convertepp:cli",
],
},
install_requires=[
"canmatrix>=0.9.1",
"click",
"epyqlib>=2020.6",
"graham",
"jinja2",
"lxml",
"openpyxl",
"pycparser",
"pysunspec",
"pyqt5",
"toolz",
"xmldiff<2.3",
],
extras_require={
"test": [
"black",
"codecov",
"gitignoreio",
"pytest",
"pytest-cov",
"pytest-qt",
"tox",
],
"build": [
"pyinstaller",
],
},
)