-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
28 lines (26 loc) · 988 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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name = 'contourviz',
version = '0.2.4',
description = 'A package that charts musical contours into a web-based interactive using music21 and D3.js.',
long_description = readme(),
keywords = 'music21 music analysis javascript data visualization',
url = 'https://github.com/cjwit/contourviz',
author = 'Christopher Witulski',
author_email = 'chris.witulski@gmail.com',
license = 'BSD',
packages = ['contourviz'],
entry_points = {
'console_scripts': [
'chart-contours = contourviz:createDataFromDirectoryCommandLine',
'chart-single-contour = contourviz:createDataFromFileCommandLine'
]
},
package_data = {
'': ['results/*.html', 'results/src/*.js', 'results/src/*.css', 'results/*.json']
},
install_requires = ['music21'],
include_package_data = True,
zip_safe = False)