-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 594 Bytes
/
Copy pathsetup.py
File metadata and controls
21 lines (20 loc) · 594 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
setup(
name="mdcal",
version="0.0.0",
url="https://github.com/realorangeone/mdcal",
author="Jake Howard",
description="Generate a calendar feed from a series of markdown files ",
packages=["mdcal"],
python_requires=">=3.6",
install_requires=[
"click",
"python-dateutil",
"ics==0.7",
"markdown",
"jinja2",
"ruamel.yaml",
],
project_urls={"GitHub: Issues": "https://github.com/realorangeone/mdcal/issues"},
entry_points={"console_scripts": ["mdcal=mdcal.__main__:main"]},
)