-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
29 lines (27 loc) · 919 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='polybeat',
version='1.1.0',
description='A toy for visualizing polyrhythms',
url='https://github.com/chunribu/polybeat/',
author='Jian Jiang',
author_email='[email protected]',
packages=find_packages(),
license='MIT',
long_description=long_description,
long_description_content_type="text/markdown",
package_data={'polybeat': ['sounds/*.wav']},
include_package_data=True,
install_requires=['manim'],
entry_points = {},
classifiers=[
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
],
keywords='polybeat polyrhythm pccfs',
)