Created
August 21, 2019 16:07
-
-
Save mberrien-fitzsimons/3ad0d27beabed1b5f068f043f48662e7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from setuptools import setup | |
install_requires = [ | |
'pandas>=0.25.0', | |
'numpy>=1.15.4', | |
'functools'] | |
setup(name='misha_math', | |
version='0.0.1', | |
description='test', | |
author='Misha Berrien', | |
install_requires=install_requires, | |
author_email='[email protected]', | |
packages=['mypackage_one', 'mypackage_two']) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment