Skip to content
Snippets Groups Projects
setup.py 336 B
Newer Older
Luc Giffon's avatar
Luc Giffon committed
from setuptools import find_packages, setup

setup(
    name='bolsonaro',
    packages=find_packages(where="code", exclude=['doc', 'dev']),
    package_dir={'': "code"},
Luc Giffon's avatar
Luc Giffon committed
    version='0.1.0',
    description='Bolsonaro project of QARMA non-permanents: deforesting random forest using OMP.',
    author='QARMA team',
    license='MIT',
)