-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 971 Bytes
/
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
from setuptools import setup
with open('README.rst') as f:
readme = f.read()
with open('CHANGES.rst') as f:
changes = f.read()
setup(
name="gtimelog2tick",
version='0.3.dev0',
description="Create entries in tickspot's tick from Gtimelog journal.",
long_description='\n\n'.join([readme, changes]),
license='GPL',
author='Michael Howitz',
author_email='[email protected]',
keywords='gtimelog, tick, upload',
url='https://github.com/minddistrict/gtimelog2tick',
py_modules=['gtimelog2tick'],
install_requires=[
'requests',
],
entry_points={
'console_scripts': [
'gtimelog2tick=gtimelog2tick:main',
],
},
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
python_requires='>= 3.11',
)