Skip to content
Snippets Groups Projects
Commit 86e5ffd2 authored by Matteo Rossi's avatar Matteo Rossi
Browse files

Add setuptools_scm

parent d2e92f66
Branches
Tags
No related merge requests found
from setuptools import setup, find_packages
setup(name='gym-stirap',
version='0.0.2',
install_requires=['gym', 'scipy', 'matplotlib'], # And any other dependencies foo needs
use_scm_version=True,
setup_requires=['setuptools_scm'],
packages=[package for package in find_packages()
if package.startswith('gym')]
)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment