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.
19 lines
544 B
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',
|
|
]
|
|
)
|
|
|