-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
30 lines (28 loc) · 953 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
from setuptools import find_packages, setup
with open("README.md", "r") as f:
description = f.read()
setup(
name="fractoolbox",
version="0.0.0",
description="A toolbox for structural geology, borehole image analysis, and geomechanics",
# package_dir={"": "fractoolbox"},
packages=find_packages(),
long_description=description,
long_description_content_type="text/markdown",
url="https://github.com/ICWallis/fractoolbox",
author="Irene Wallis",
author_email="[email protected]",
license="Apatche 2.0",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache 2.0 License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
],
install_requires=[],
extras_require={
# "dev": ["pytest>=7.0", "twine>=4.0.2"],
},
python_requires=">=3.8",
)