-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
executable file
·41 lines (38 loc) · 1.14 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
from thotkeeper import __version__ as tk_version
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='thotkeeper',
version=tk_version,
author='C. Michael Pilato',
author_email='[email protected]',
description='Cross-platform personal daily journaling',
long_description=long_description,
long_description_content_type='text/markdown',
keywords='journaling',
url='https://github.com/cmpilato/thotkeeper',
packages=find_packages(),
package_data={
'thotkeeper': ['*.xrc'],
},
data_files=[
('share/pixmaps', ['icons/thotkeeper.xpm']),
('share/icons/hicolor/scalable/apps', ['icons/thotkeeper.svg']),
],
entry_points={
'console_scripts': [
'thotkeeper = thotkeeper:main',
],
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: BSD-2 License',
'Operating System :: OS Independent',
],
include_package_data=True,
zip_safe=False,
platforms='any',
python_requires='>=3.4',
)