You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
319 B
Python
12 lines
319 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='scaling',
|
|
version='0.2.0',
|
|
packages=['scaling'],
|
|
install_requires=['pint'],
|
|
author='Dan Howe',
|
|
author_email='d.howe@wrl.unsw.edu.au',
|
|
url='https://github.com/onewhaleid/scaling'
|
|
description='convert units using Froude and Reynolds similitude')
|