-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (32 loc) · 961 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
from setuptools import setup, find_packages
from pathlib import Path
long_description = (Path(__file__).parent / "README.md").read_text()
setup(
name='timeline-ssg',
version='0.0.1',
description='Generates a life timeline out of your personal files',
long_description=long_description,
long_description_content_type='text/markdown',
url='http://github.com/nicbou/timeline',
author='Nicolas Bouliane',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
scripts=['timeline/bin/timeline'],
package_data={
'timeline.templates': ['*', ],
},
python_requires='>=3.11',
install_requires=[
'gpxpy==1.5.0',
'icalendar==5.0.10',
'Markdown==3.5.2',
'Pillow==10.3.0',
'platformdirs==3.10.0',
'PyMuPDF==1.24.5',
'pytz',
'reverse-geocode==1.4.1',
'timezonefinder==6.5.2',
],
zip_safe=False,
)