-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
40 lines (36 loc) · 1.24 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
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt") as f:
required = f.read().splitlines()
with open("requirements-dev.txt") as f:
required_dev = f.read().splitlines()
setup(
name="darsia",
version="0.0.1",
description="Darcy scale image analysis toolbox",
keywords="darcy image analysis porous media flow",
package_dir={"": "src"},
packages=find_packages(where="src"),
package_data={"darsia": ["py.typed"]},
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python ::3",
"Programming Language :: Python ::3.10"
"License :: OSI Approved :: Apache v2 License",
"Operating System :: Linux, Windows",
],
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=required,
extras_require={
"dev": required_dev,
},
python_requires=">=3",
url="https://github.com/pmgbergen/DarSIA.git",
author="Erlend Storvik, Jan Nordbotten and Jakub Wiktor Both",
maintainer="Erlend Storvik",
maintainer_email="[email protected]",
platforms=["Linux", "Windows"],
license="Apache v2",
)