forked from Sander-w/breakwater
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 1.01 KB
/
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
32
33
34
35
36
import setuptools
from breakwater import __version__, __author__
with open('README.md', 'r') as fh:
long_description = fh.read()
requires = [
'numpy',
'scipy',
'matplotlib',
'pandas',
'tabulate',
]
setuptools.setup(
name='breakwater',
version=__version__,
author=__author__,
author_email='[email protected]',
description='A package for the conceptual design of breakwaters',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Sander-w/breakwater/',
packages=setuptools.find_packages(),
classifiers=[
'Programming Language :: Python :: 3',
'Natural Language :: English',
'Operating System :: OS Independent',
'License :: Free for non-commercial use',
],
python_requires='>=3.6',
install_requires = requires,
keywords='conceptual design hydraulic engineering breakwaters',
include_package_data=True,
data_files = [('', ['LICENSE', 'README.md'])],
)