-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
64 lines (61 loc) · 2.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
"""A setuptools based setup module.
See:
https://packaging.python.org/guides/distributing-packages-using-setuptools/
https://github.com/pypa/sampleproject
"""
from setuptools import setup
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / 'README.md').read_text(encoding='utf-8')
setup(
name='komunitin_lite',
version='0.0.1',
description='Basic python GTK3 client for komunitin users',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/XaviP/komunitin-lite-gtk3',
author='XaviP - Ecoxarxa del Bages',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: End Users/Desktop',
'Topic :: Office/Business :: Financial :: Accounting',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3 :: Only',
],
keywords='komunitin, social currencies, mutual credit',
packages=[
'komunitin_lite',
'komunitin_lite.core',
'komunitin_lite.gtk3',
'komunitin_lite.cli',
],
package_dir={'komunitin_lite': 'komunitin_lite'},
package_data={
'komunitin_lite': [
'komunitin_icon.svg',
'config*.ini',
'po/*/LC_MESSAGES/base.mo',
],
'komunitin_lite.gtk3': [
'glade/*.glade',
],
},
include_package_data=True,
data_files=[
('share/applications', ['komunitin_lite.desktop']),
('share/pixmaps', ['komunitin_lite/komunitin_icon.svg']),
# ('share/man/man1', ['man/hello.1']),
],
python_requires='>=3.7, <4',
install_requires=['requests'],
scripts=['komunitin_lite/komunitin_lite'],
project_urls={
'Bug Reports': 'https://github.com/XaviP/komunitin-lite-gtk3/issues',
'Source': 'https://github.com/XaviP/komunitin-lite-gtk3',
},
)