corrscope/setup.py

19 wiersze
414 B
Python

from setuptools import setup
setup(
name='ovgenpy',
version='0',
packages=[''],
url='',
license='BSD-2-Clause',
author='nyanpasu64',
author_email='',
description='',
tests_require=['pytest>=3.2.0', 'pytest-pycharm', 'hypothesis', 'delayed-assert'],
install_requires=[
'numpy', 'scipy', 'click', 'ruamel.yaml',
'matplotlib',
'attrs>=18.2.0',
]
)