- commit
- f4f28d15410161b7823a2527cf01507eb6496d68
- parent
- 2f4fb8ce748b7e8dbc3c2c7ea2baecc314172ecc
- Author
- Tobias Bengfort <tobias.bengfort@posteo.de>
- Date
- 2023-09-19 15:24
add setup.py
Diffstat
| A | setup.py | 17 | +++++++++++++++++ |
1 files changed, 17 insertions, 0 deletions
diff --git a/setup.py b/setup.py
@@ -0,0 +1,17 @@
-1 1 from setuptools import setup
-1 2
-1 3
-1 4 setup(
-1 5 name='xi2',
-1 6 version='0.0.0',
-1 7 description='a plain text language that compiles to MIDI',
-1 8 long_description=open('README.md').read(),
-1 9 long_description_content_type='text/markdown',
-1 10 author='Tobias Bengfort',
-1 11 author_email='tobias.bengfort@posteo.de',
-1 12 license='MIT',
-1 13 packages=['xi2'],
-1 14 entry_points={'console_scripts': [
-1 15 'xi2=xi2.__main__:main',
-1 16 ]},
-1 17 )