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.
15 lines
387 B
Python
15 lines
387 B
Python
from setuptools import setup
|
|
|
|
with open('README.md', 'r') as f:
|
|
long_description = f.read()
|
|
|
|
setup(
|
|
name='scaling',
|
|
version='0.2.1',
|
|
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')
|