Start of the editor
- class structure works, but is odd. - I should not commit this publicly until I do a few python classes.
This commit is contained in:
parent
ec1905d37f
commit
97d1b1ebe5
4 changed files with 120 additions and 0 deletions
15
setup.py
Normal file
15
setup.py
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#!/usr/bin/env python
|
||||
# coding:utf-8
|
||||
"""
|
||||
Author: Sir Garbagetruck --<truck@whatever>
|
||||
Purpose: setup script for Sahli editor tools
|
||||
Created: 2020/04/09
|
||||
"""
|
||||
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name="SahliEditor",
|
||||
version="0.1",
|
||||
packages=find_packages()
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue