-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 908 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 908 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
import setuptools
import os
def read_file(filename):
with open(os.path.join(os.path.dirname(__file__), filename)) as file:
return file.read()
description = "Creates a pdf notebook/journal out of your digital notes, using latex + python"
setuptools.setup(
name="journalmk",
version="2023.1.1",
url="https://github.com/riemarc/journalmk",
author="Marcus Riesmeier",
license="BSD 3-Clause License",
description=description,
long_description=read_file('readme.md'),
long_description_content_type='text/markdown',
packages=setuptools.find_packages(),
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
),
entry_points={
"console_scripts": ['journalmk=journalmk.__main__:main'],
}
)