-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (41 loc) · 1.58 KB
/
setup.py
File metadata and controls
50 lines (41 loc) · 1.58 KB
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
45
46
47
48
49
50
from setuptools import setup, find_packages
setup(
name="forcefinder",
version="0.2.2",
author="Steven Carter",
author_email="spcarte@sandia.gov",
description="An advanced inverse source estimation package for Python",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/sandialabs/forcefinder",
project_urls={"documentation":"https://sandialabs.github.io/forcefinder"},
packages=find_packages(where='src'), # Tell setuptools to look in the src/ folder
package_dir={"": "src"}, # Set the base folder for the packages to src/
classifiers=["Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Operating System :: MacOS :: MacOS X"
],
python_requires='>=3.9',
install_requires=[
"numpy>=1.26.0",
"scipy>=1.10.0",
"sdynpy>=0.14.0",
"joblib>=1.3.0",
"matplotlib>=3.5.0",
"cvxpy>=1.7",
"pyqt5"
],
extras_require={ # Extra packages that are useful for development
"dev": [
"sdynpy>=0.18.6",
"pytest",
"pytest-cov",
"jupyter-book==1.0.4",
"sphinx-autoapi",
"nbconvert"
]
}
)