-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
27 lines (26 loc) · 1.02 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
from setuptools import setup, find_packages
setup(
name="Mattis-Bardeen",
version="0.0.1dev",
author="John Garrett",
author_email="[email protected]",
description=("Calculate the electrical properties of superconductors using Mattis-Bardeen theory."),
license="GPL v3",
keywords="superconductivity, physics, superconducting detectors, terahertz instrumentation, Python",
packages=find_packages(),
install_requires=[
'numpy',
'scipy'
],
long_description="Calculate the electrical properties of superconductors using Mattis-Bardeen theory.",
classifiers=[
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Physics",
],
)