-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (32 loc) · 1.06 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
import os
from distutils.core import Extension, setup
setup(
name="corapy",
version="0.1.0",
description="Computational Raman Python tools",
author="Mohammad Bagheri",
author_email="[email protected]",
url="https://ramandb.oulu.fi",
python_requires=">=3.7",
install_requires=["numpy>=1.19.0","matplotlib>=2.2.2", "ase"],
packages=[
"corapy",
"corapy.spectrum",
],
scripts=[
"scripts/corapy-plot",
],
classifiers=[
"Development Status :: 1 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD 3-Clause License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Materials",
"Topic :: Scientific/Engineering :: Physics",
],
)