-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (42 loc) · 1.34 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
from setuptools import setup, find_packages
VERSION = '0.0.dev1'
install_requires = [
'sqlalchemy == 1.4.29',
'fints == 3.0.1',
'Pillow == 9.0.0',
'arrow == 1.2.1',
]
docs_extras = [
'Sphinx >= 4.3.2', # Force RTD to use >= 4.3.2
'docutils >=0.17.1',
]
data_files = [
('config', ['data/config.sample.ini']),
('share/applications/', ['wegmanager/wegmanager.desktop']),
('lib/python3.8/site-packages/wegmanager', ['wegmanager/icon.png']),
('', ['debian/start.sh']),
]
setup(
name='wegmanager',
version=VERSION,
description='accounting software for apartments in ownership communities.',
classifiers=[
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
keywords=["accounting", "apartment", "real estate"],
author="Robert Hirsch",
author_email="[email protected]",
url="https://github.com/hirschrobert/wegmanager",
license="GPL-3.0-only",
package_dir={'wegmanager': 'wegmanager'},
packages=find_packages(),
package_data={'wegmanager': ['locale/*/LC_MESSAGES/*.mo']},
entry_points={
'gui_scripts': ['wegmanager = wegmanager.wegmanager:main']
},
data_files=data_files,
python_requires='>=3.8',
install_requires=install_requires,
extras_require={'docs': docs_extras}
)