-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 711 Bytes
/
setup.py
File metadata and controls
28 lines (24 loc) · 711 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
import os
from setuptools import find_packages, setup
def __read(path: str) -> str:
with open(os.path.abspath(path), 'r') as f:
return f.read()
setup(
name="leko",
version='0.1.1',
description="Leko is the programmer's notebook.",
url="https://github.com/markovejnovic/leko/",
long_description=__read("README.md"),
long_description_content_type="text/markdown",
author="author_name",
packages=find_packages(exclude=["tests", ".github"]),
package_data={'leko': ['style/**/*']},
install_requires=[
'pandoc>=2.3',
'plumbum>=1.8',
'ply>=3.11'
],
entry_points={
"console_scripts": ["leko = leko.__main__:main"]
},
)