https://github.com/NeLy-EPFL/utils_ballrot
Raw File
Tip revision: 7247f448be62f349bb528ad70633b4b41be5bbaf authored by faymanns on 05 March 2022, 12:09:25 UTC
added heading
Tip revision: 7247f44
setup.py
from setuptools import setup, find_packages

with open("README.md", "r") as fh:
    long_description = fh.read()


setup(
    name="utils_ballrot",
    version="0.1",
    packages=["utils_ballrot",],
    author="Florian Aymanns",
    author_email="florian.ayamnns@epfl.ch",
    description="Basic utility functions for processing ball rotation data.",
    long_description=long_description,
    long_description_content_type="text/markdown",
    url="https://github.com/NeLy-EPFL/utils_ballrot.git",
    install_requires=["numpy", "matplotlib",],
)
back to top