-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 770 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import setuptools
setuptools.setup(
name='PyResis',
version='1.0.2',
packages=setuptools.find_packages(exclude=["tests", "test.*", "test*.*", "docs", "assets", "config",
"internal", "venv"]),
url='https://github.com/MaritimeRenewable/PyResis',
license='MIT',
author='Yu Cao',
author_email='tsaoyu@gmail.com',
description='Python ship Resistance estimation package',
python_requires='>=3.8',
classifiers=[
'Programming Language :: Python :: 3.8',
'Operating System :: OS Independent',
],
install_requires=tuple(
filter(
lambda r: not r.startswith("#"), (r.replace("\n", "") for r in open("requirements.txt").readlines())
)
)
)