-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 870 Bytes
/
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
import setuptools
VERSION = 5
setuptools.setup(
name="pypcs",
version='0.0.' + str(VERSION),
author="Jason Lee",
author_email="[email protected]",
description="",
long_description=open('README.md', 'r', encoding="utf-8").read(),
long_description_content_type='text/markdown',
install_package_data=True,
package_data={'': ['*.txt', '*.md', '*.json', '*.png']},
url="https://github.com/JasonLee-p/pyPCS",
install_requires=[
'numpy==1.24.2',
'pygame==2.3.0',
'rtmidi==2.5.0',
'webcolors==1.12',
'Pillow==9.5.0'
],
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
],
)