-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 1013 Bytes
/
setup.py
File metadata and controls
37 lines (35 loc) · 1013 Bytes
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
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="contact@nicolasbouliane.com",
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==12.1.1",
"pillow-heif==1.3.0",
"platformdirs==3.10.0",
"PyMuPDF==1.24.5",
"pytz",
"reverse-geocode==1.4.1",
"timezonefinder==6.5.2",
],
zip_safe=False,
)