-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 992 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import setup, find_packages
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except:
long_description = None
# Read version from package.
from ebb.__version__ import __version__
setup(name='ebb',
version=__version__,
author='Lewis A. Marshall',
author_email='lewis.a.marshall@gmail.com',
url="http://lewisamarshall.github.io/ebb/",
classifiers=[
"Programming Language :: Python",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Libraries :: Python Modules",
],
use_2to3=False,
license='LICENSE',
description='A package for liquid flow calculations.',
long_description=long_description,
packages=find_packages(),
requires=['numpy', 'scipy', 'pint', 'click'],
entry_points={'console_scripts': ['ebb = ebb.__main__:cli']},
test_suite="ebb.tests",
)