xipd

programming language for audio processing that compiles to PureData
git clone https://git.ce9e.org/xipd.git

commit
085ed56f2a02e047780e204071bace026d443161
parent
a48e0e3be30723d86374323543d298a5c33b6da4
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2022-08-27 08:35
package using setup.cfg

Diffstat

A .gitignore 2 ++
A setup.cfg 17 +++++++++++++++++
A setup.py 3 +++

3 files changed, 22 insertions, 0 deletions


diff --git a/.gitignore b/.gitignore

@@ -0,0 +1,2 @@
   -1     1 build
   -1     2 dist

diff --git a/setup.cfg b/setup.cfg

@@ -0,0 +1,17 @@
   -1     1 [metadata]
   -1     2 name = xipd
   -1     3 version = 0.0.0
   -1     4 author = Tobias Bengfort
   -1     5 author_email = tobias.bengfort@posteo.de
   -1     6 description = a programming language for audio processing that compiles to PureData
   -1     7 long_description = file:README.md
   -1     8 long_description_content_type = text/markdown
   -1     9 license = MIT
   -1    10 
   -1    11 [options]
   -1    12 packages = xipd
   -1    13 
   -1    14 [options.entry_points]
   -1    15 console_scripts =
   -1    16     xipd = xipd.__main__:main
   -1    17     xipd-format = xipd.format:main

diff --git a/setup.py b/setup.py

@@ -0,0 +1,3 @@
   -1     1 from setuptools import setup
   -1     2 
   -1     3 setup()