forked from redspider/pybear
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
32 lines (28 loc) · 853 Bytes
/
setup.py
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
import setuptools
from bear import __version__ as version
with open('README.md') as file:
long_description = file.read()
setuptools.setup(
name='pybear',
version=version,
description='Trivial python library to access Bear Writer notes',
long_description=long_description,
long_description_content_type='text/markdown',
author='Richard Clark',
author_email='[email protected]',
url='https://github.com/redspider/pybear',
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
install_requires=[
'Markdown',
],
packages=setuptools.find_packages(),
entry_points={
'console_scripts': [
'bear_to_html = bear.bear_to_html:main',
'bear_to_jekyll = bear.bear_to_jekyll:main',
],
},
)