remove some vestigial packaging stuf; redo this later

This commit is contained in:
stupidcomputer 2024-06-16 19:11:23 -05:00
parent 38877d36ab
commit 200d01f9ad
2 changed files with 0 additions and 19 deletions

View File

@ -1,3 +0,0 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

View File

@ -1,16 +0,0 @@
import setuptools
setuptools.setup(
name='desmos-sync',
version='0.1',
author='Ryan Marina',
description='synchronize Desmos expressions between the local filesystem and the web calculator',
packages=["desmossync"],
entry_points = {
"console-scripts": [ "desmos-sync=desmossync.cli.entry" ]
},
install_requires=[
'setuptools',
'websockets',
'watchdog'
]
)