-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
48 lines (41 loc) · 1.55 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
#!/usr/bin/env python3
import os
import re
import sys
from setuptools import setup,find_packages
from setuptools import setuptools.command,build_py import build_py as _build_py
#Check that python packages needed by ASE (as of August 2022) are in place.
#Modified from ASE setup.py file available here: https://wiki.fysik.dtu.dk/ase
python_min_version = (3, 6)
python_requires = '>=' + '.'.join(str(num) for num in python_min_version)
if sys.version_info < python_min_version:
raise SystemExit('Python 3.6 or later is required!')
install_requires = [
'numpy>=1.17.0',
'scipy>=1.3.1',
'matplotlib>=3.1.0',
'importlib-metadata>=0.12;python_version<"3.8"'
]
setup(name="pyRUQT",
version="0.1"
description="Rowan University Quantum Transport (Python-version)",
url="https://github.com/HoyLab-Rowan",
maintainer="Hoy Research Group",
author='Erik P. Hoy',
author_email="[email protected]",
license='GPL-3.0',
platforms=['unix'],
packages=find_package(),
python_requires=python_pythongs,
install_requires=install_requires,
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (GPLv3.0)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Physics'
],
)