initial commit, add gello software code and instructions

This commit is contained in:
Philipp Wu 2023-11-13 09:17:27 -08:00
parent e7d842ad35
commit 18cc23a38e
70 changed files with 5875 additions and 4 deletions

25
setup.py Normal file
View file

@ -0,0 +1,25 @@
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="gello",
version="0.0.1",
author="Philipp Wu",
author_email="philippwu@berkeley.edu",
description="software for GELLO",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/wuphilipp/gello_software",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
python_requires=">=3.8",
license="MIT",
install_requires=[
"numpy",
],
)