-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
54 lines (53 loc) · 1.09 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
43
44
45
46
47
48
49
50
51
52
53
54
import setuptools
setuptools.setup(
name="jenot",
version="0.0",
packages=setuptools.find_packages(where='src'),
package_dir={'': 'src'},
license="MIT",
python_requires=">=3.9",
install_requires=[
'requests',
'meiga',
'ConfigArgParse',
'py-notifier',
'PyQt5',
'PyQt5-stubs',
'PyYAML',
],
entry_points=dict(
console_scripts=[
'jenot = jenot.__main__:main',
'jenotg = jenot.qt.__main__:main',
]
),
package_data={
'jenot': [
'data/logo.*',
],
'jenot.qt': [
'ui/*.ui',
]
},
include_package_data=True,
extras_require={
'dev': [
'httpie',
'mypy',
],
'systemd': [
'systemd ; platform_system == "Linux"'
],
'installer': [
'doit',
'pyinstaller',
],
'test': [
'api4jenkins',
'pytest',
'pytest-cov',
'pytest-qt',
'requests',
],
}
)