-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 747 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 747 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
from setuptools import find_packages
from setuptools import setup
setup(
name='notesystem',
version='0.2.2',
description='A tool to help with converting/checking and notes in general',
url='https://github.com/twanh/note-system',
author='twanh',
author_email='huiskenstwan@gmail.com',
packages=find_packages(exclude=('tests',)),
python_requires='>=3.8.0',
install_requires=[
'mistune>=2.0.0a6',
'termcolor>=1.1.0',
'tqdm>=4.56.2',
'watchdog>=2.0.1',
'yaspin>=1.4.0',
'toml==0.10.2',
'keyring==23.0.1',
'requests==2.26.0',
],
entry_points={
'console_scripts': [
'notesystem=notesystem.__main__:run',
],
},
)