-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
45 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
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 = "dannntrax@gmail.com", | ||
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" | ||
], | ||
keywords = "tracker music samples mod s3m it", | ||
packages = ["trackrip"], | ||
python_requires = ">=3.7", | ||
entry_points={ | ||
'console_scripts': [ | ||
'trackrip=trackrip.__main__:main', | ||
], | ||
}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
__version__ = "1.0.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters