Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
*.pyc
*.pyo
*.swp
/build
__pycache__
Binary file removed rill/tools/__pycache__/MarkupLibrary.cpython-37.pyc
Binary file not shown.
Binary file not shown.
Binary file removed rill/tools/__pycache__/__init__.cpython-37.pyc
Binary file not shown.
9 changes: 5 additions & 4 deletions setup.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/usr/bin/env python
import setuptools


install_requires = ["abjad", "mypy", "roman"]


keywords = [
"abjad",
"music composition",
Expand All @@ -14,12 +14,13 @@

if __name__ == "__main__":
setuptools.setup(
name="rill",
version = "0.0",
author="Adam McCartney",
author_email="adam@mur.at",
install_requires=install_requires,
keywords=", ".join(keywords),
name="rill (erosion)",
packages=["rill"],
packages=setuptools.find_packages(),
platforms="Any",
url="https://github.com/adammccartney/rill",
)
)