-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (38 loc) · 1.17 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
37
38
39
40
41
42
43
44
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
DEPENDENCIES = []
TEST_DEPENDENCIES = ['pytest']
VERSION = "0.1"
URL = "https://github.com/KVSlab/turtleFSI.git"
setuptools.setup(
name="turtleFSI",
version=VERSION,
license="GPL",
author="",
author_email="",
url=URL,
project_urls={
"Documentation": "https://turtlefsi.readthedocs.io/",
"Source Code": URL,
},
description="turtleFSI - Fluid-structure interaction",
long_description=long_description,
long_description_content_type="text/markdown",
# Dependencies
install_requires=DEPENDENCIES,
tests_require=TEST_DEPENDENCIES,
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
"Programming Language :: Python :: 3",
],
packages=["turtleFSI",
"turtleFSI.modules",
"turtleFSI.problems",
"turtleFSI.utils"],
package_dir={"turtleFSI": "turtleFSI"},
include_package_data = True,
#package_data = {'mesh': ['turtleFSI/mesh/*']},
entry_points={'console_scripts': ['turtleFSI=turtleFSI.run_turtle:main']}
)