-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (53 loc) · 1.46 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
57
# -*- coding: utf-8 -*-
"""Setup file for pyQD, the split-operator TDSE package."""
from setuptools import setup
VERSION = "0.5.1"
NAME = "plasmonicmeep"
LICENSE = "GPLv3"
DESCRIPTION = (
"Script collection to calculate field enhancements of plasmonic nanostructures."
)
URL = "https://gitlab.com/theoretical-chemistry-jena/quantum-dynamics/plasmon-meep"
EMAIL = "[email protected]"
AUTHOR = "Fabian G. Dröge"
REQUIRES_PYTHON = ">=3.7.0"
REQUIRED = [
"joblib",
"h5py",
"numpy",
"matplotlib",
"pandas",
"pyyaml",
]
ENTRYPOINTS = {
"console_scripts": [
"plas-meep = plasmonicmeep.fdtd:main",
"plas-field = plasmonicmeep.calculate_2d_field:main",
"plas-vis = plasmonicmeep.visualise:main",
]
}
CLASSIFIERS = [
# Trove classifiers
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
]
setup(
name=NAME,
description=DESCRIPTION,
author=AUTHOR,
author_email=EMAIL,
url=URL,
install_requires=REQUIRED,
python_requires=REQUIRES_PYTHON,
packages=[NAME],
entry_points=ENTRYPOINTS,
classifiers=CLASSIFIERS,
zip_safe=False,
license=LICENSE,
include_package_data=False,
version=VERSION,
)