-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
39 lines (37 loc) · 1.27 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import pathlib
from setuptools import setup
from trackrip import __version__
here = pathlib.Path(__file__).parent.resolve()
README = (here / 'README.md').read_text(encoding='utf-8')
setup(
name = "trackrip",
version = __version__,
description = "Extracts samples from various music tracker module formats",
long_description = README,
long_description_content_type = "text/markdown",
url = "https://github.com/dbrookman/trackrip",
author = "Daniel Brookman",
author_email = "[email protected]",
license = "MIT",
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Conversion",
"Topic :: Terminals",
"Topic :: Utilities"
],
keywords = "tracker music samples mod s3m it xm umx",
packages = ["trackrip"],
python_requires = ">=3.7",
entry_points={
'console_scripts': [
'trackrip=trackrip.__main__:main',
],
},
)