Skip to content

Commit

Permalink
setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Natooz committed Aug 13, 2021
1 parent 1fb06d9 commit 2385ab2
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
**/*.DS_STORE
# Python precompiled files
*.pyc
# Builds dir
dist/
# PyCharm config files
.idea/
# PyCharm Virtual Environment
Expand Down
39 changes: 39 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
from setuptools import setup, find_packages

with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setup(
name='miditok',
author='Nathan Fradet',
url='https://github.com/Natooz/MidiTok',
packages=find_packages(exclude=("tests",)),
version='0.0.1',
license='MIT',
description='A convenient MIDI tokenizer for Deep Learning networks, with multiple encoding strategies',
long_description=long_description,
long_description_content_type="text/markdown",
keywords=[
'artificial intelligence',
'deep learning',
'transformer',
'midi',
'tokenization',
'music',
'mir'
],
install_requires=[
'numpy>=1.21',
'miditoolkit>=0.1.14'
],
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Multimedia :: Sound/Audio :: MIDI',
'License :: OSI Approved :: MIT License',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent"
],
)

0 comments on commit 2385ab2

Please sign in to comment.