A simple tool to export notes from Scarlet Notes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
scarlet_export/setup.py

19 lines
544 B

from setuptools import setup
setup(
name='scarlet_export',
version='0.1.0',
description='A Scarlet Notes data export tool',
author='Timur Demin',
author_email='me@tdem.in',
url='https://git.tdem.in/tdemin/scarlet_export',
packages=['scarlet_export'],
include_package_data=True,
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
]
)