forked from flaport/fdtd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (51 loc) · 1.22 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
45
46
47
48
49
50
51
52
53
54
55
56
import setuptools
description = """a 3D electromagnetic FDTD simulator written in Python"""
with open("readme.md", "r") as file:
long_description = file.read()
reqs = [
"tqdm",
"numpy",
"scipy",
"matplotlib",
]
extras = {
"dev": [
"pytest",
"black",
"nbstripout",
"pre-commit",
"ipykernel",
"line_profiler",
],
"test": [
"pytest",
],
"docs": [
"sphinx",
"nbsphinx",
"sphinx-rtd-theme",
],
}
author = "Floris laporte"
version = "0.0.2"
setuptools.setup(
name="fdtd",
version=version,
author=author,
author_email="[email protected]",
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
url="http://github.com/flaport/fdtd",
packages=setuptools.find_packages(),
install_requires=reqs,
extras_require=extras,
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
],
)