-
Notifications
You must be signed in to change notification settings - Fork 90
/
Copy pathsetup.py
51 lines (48 loc) · 1.65 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
40
41
42
43
44
45
46
47
48
49
50
51
import pathlib
from setuptools import find_packages, setup
this_directory = pathlib.Path(__file__).parent
with open(this_directory / "README.md", encoding="utf-8") as f:
long_description = f.read()
setup(
name="pianoputer",
install_requires=["librosa >= 0.8.0", "pygame >= 2.0.0", "keyboardlayout >= 2.0.1"],
python_requires=">=3",
version="2.0.2",
description='Use your computer keyboard as a "piano"',
author="Zulko",
maintainer="Justin Black",
packages=find_packages(),
include_package_data=True,
url="https://github.com/Zulko/pianoputer",
entry_points={
"console_scripts": ["pianoputer=pianoputer.pianoputer:play_pianoputer"],
},
license="see LICENSE.txt",
keywords=["piano", "keyboard", "synthesizer", "instrument", "music"],
setup_requires=["pytest-runner"],
tests_require=["pytest"],
extras_require={
"dev": [
"setuptools",
"wheel",
"twine",
"isort",
"black",
]
},
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Education",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Games/Entertainment :: Simulation",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Players",
],
long_description=long_description,
long_description_content_type='text/markdown',
)