And fmt
This commit is contained in:
parent
debc7996ee
commit
bbae5ef63f
34 changed files with 956 additions and 886 deletions
projects/flowmetal
|
@ -3,7 +3,7 @@ from setuptools import setup
|
|||
setup(
|
||||
name="arrdem.flowmetal",
|
||||
# Package metadata
|
||||
version='0.0.0',
|
||||
version="0.0.0",
|
||||
license="MIT",
|
||||
description="A weird execution engine",
|
||||
long_description=open("README.md").read(),
|
||||
|
@ -18,20 +18,16 @@ setup(
|
|||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.8",
|
||||
],
|
||||
|
||||
# Package setup
|
||||
package_dir={"": "src/python"},
|
||||
packages=[
|
||||
"flowmetal",
|
||||
],
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'iflow=flowmetal.repl:main'
|
||||
],
|
||||
"console_scripts": ["iflow=flowmetal.repl:main"],
|
||||
},
|
||||
install_requires=[
|
||||
'prompt-toolkit~=3.0.0',
|
||||
"prompt-toolkit~=3.0.0",
|
||||
],
|
||||
extras_require={
|
||||
}
|
||||
extras_require={},
|
||||
)
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
An abstract or base Flowmetal DB.
|
||||
"""
|
||||
|
||||
from abc import abc, abstractmethod, abstractproperty, abstractclassmethod, abstractstaticmethod
|
||||
from abc import abstractclassmethod, abstractmethod
|
||||
|
||||
|
||||
class Db(ABC):
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
import click
|
||||
|
||||
|
||||
@click.group()
|
||||
def cli():
|
||||
pass
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
import click
|
||||
|
||||
|
||||
@click.group()
|
||||
def cli():
|
||||
pass
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
"""
|
||||
Somewhat generic models of Flowmetal programs.
|
||||
"""
|
||||
|
||||
from typing import NamedTuple
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
import click
|
||||
|
||||
|
||||
@click.group()
|
||||
def cli():
|
||||
pass
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
import click
|
||||
|
||||
|
||||
@click.group()
|
||||
def cli():
|
||||
pass
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue