Skip to content

Commit 2ea0705

Browse files
committed
setup.py, manifest, some reorg
1 parent adff5e9 commit 2ea0705

37 files changed

+468
-394
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
__pycache__/
2+
build/
3+
dist/
4+
textbeat.egg-info/
25
*.pyc

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
recursive-include textbeat/def *
2+
recursive-include textbeat/presets *

examples/7.txbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
%t120x2 c16,-2 ppiano,piano
1+
%v0 t120x2 c16,-2 ppiano,piano
22

33

44
phyrigian

examples/metronome.txbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
%n=8 p=drums c10,-2 f=loop
2-
1
2+
1
33
b5
44
3
55
b5

setup.py

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#!/usr/bin/python
2+
from __future__ import unicode_literals
3+
from setuptools import setup, find_packages
4+
import sys
5+
if sys.version_info[0]==2:
6+
sys.exit('Sorry, python2 support is currently broken. Use python3!')
7+
setup(
8+
name='textbeat',
9+
version='0.1.0',
10+
description='text music sequencer and midi shell',
11+
url='https://github.com/filpcoder/textbeat',
12+
author='Grady O\'Connell',
13+
author_email='[email protected]',
14+
license='MIT',
15+
packages=['textbeat','textbeat.def','textbeat.presets'],
16+
include_package_data=True,
17+
install_requires=[
18+
'pygame','colorama','prompt_toolkit','appdirs','pyyaml','docopt','future','shutilwhich'
19+
],
20+
entry_points='''
21+
[console_scripts]
22+
textbeat=textbeat.__main__:main
23+
txbt=textbeat.__main__:main
24+
''',
25+
zip_safe=False
26+
)
27+

src/analyzer.py

Lines changed: 0 additions & 3 deletions
This file was deleted.

src/remote.py

Lines changed: 0 additions & 3 deletions
This file was deleted.

test/arp.mid

66 Bytes
Binary file not shown.

test/cc.txbt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
; run this using Helm synth
21
%f=loop c15,-2
32
1@bs0:0
43
b3

test/modes.txbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
5
1515
6
1616
7
17-
%r2
17+
%k2
1818
1
1919
2
2020
3

test/organ.txbt

Lines changed: 0 additions & 37 deletions
This file was deleted.

0 commit comments

Comments
 (0)