-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 1 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="MyBigNote-LEVITANUS", # Replace with your own username
version="0.0.1",
author="Levitanus",
author_email="pianoist@ya.ru",
description="Small gui app for displaying one big note.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Levitanus/MyBigNote",
classifiers=[
"Programming Language :: Python :: 3",
"License :: GNU/GPLv3",
"Operating System :: OS Independent",
],
install_requires=[
"setuptools>=42", "wheel", "CairoSVG>=2.5", "pygame>=2.0.1",
"pygame-gui>=0.5.6", "python-rtmidi>=1.4"
],
entry_points={
'console_scripts': ['my_big_note = my_big_note.__main__:main']
},
packages=['my_big_note'],
python_requires='>=3.6',
package_data={
'my_big_note': ['images/*.svg'],
},
include_package_data=True,
)