-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 823 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from distutils.core import setup
import setuptools
setup(
name='digital_ink_library',
version='1.4.1',
packages=['digital_ink_library', 'digital_ink_library.serialization', 'digital_ink_library.conversion'],
url='https://github.com/DFKI-Interactive-Machine-Learning/digital-ink-library-python',
license='CC BY-NC-SA 4.0',
keywords=['digital pen'],
author='Alexander Prange, Michael Barz',
author_email='alexander.prange@dfki.de, michael.barz@dfki.de',
python_requires='>=3.6.0',
download_url="https://github.com/DFKI-Interactive-Machine-Learning/digital-ink-library-python/releases/download/v1.4.1/digital_ink_library-1.4.1-py3-none-any.whl",
install_requires=[
'numpy',
'scipy'
],
description='Library for digital ink, written in Python.'
)