1+ from setuptools import setup , find_packages
2+ with open ("README.md" , "r" , encoding = "utf-8" ) as fh :
3+ long_description = fh .read ()
4+ with open ("requirements.txt" , "r" , encoding = "utf-8" ) as fh :
5+ requirements = fh .read ()
6+ setup (
7+ name = 'polyendtracker-midi-export' ,
8+ version = '0.0.1' ,
9+ author = 'Alexey Strelkov' ,
10+ author_email = '[email protected] ' ,
11+ license = 'MIT License' ,
12+ description = 'Unoficial tool that converts Polyend Tracker *.mtp pattern files to midi files.' ,
13+ long_description = long_description ,
14+ long_description_content_type = "text/markdown" ,
15+ url = 'https://github.com/DataGreed/polyendtracker-midi-export' ,
16+ py_modules = ['parsers' , 'exporters' ],
17+ packages = find_packages (),
18+ install_requires = [requirements ],
19+ python_requires = '>=3.7' ,
20+ classifiers = [
21+ "Programming Language :: Python :: 3.9" ,
22+ "Operating System :: OS Independent" ,
23+ ],
24+ entry_points = '''
25+ [console_scripts]
26+ polymidiexport=polytracker2midi:main
27+ '''
28+ )
0 commit comments