Turn it into an actually installable Python library

master
Gael-de-Sailly 2018-11-18 13:12:29 +01:00
parent 639fd250d3
commit d9494893b2
3 changed files with 16 additions and 0 deletions

3
.gitignore vendored
View File

@ -1 +1,4 @@
__pycache__/
build/
dist/
mtschem.egg-info/

13
setup.py Executable file
View File

@ -0,0 +1,13 @@
#!/usr/bin/env python3
from setuptools import setup
setup(
name="mtschem",
version="0.1",
author="Gaël de Sailly",
author_email="gael-de-sailly@netc.eu",
packages=['mtschem'],
install_requires=['numpy'],
license="GPLv2",
description="Provides Input/Output for Minetest schematics",
)