-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
38 lines (34 loc) · 1.32 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
from setuptools import setup, find_packages
VERSION = '1.0.1'
DESCRIPTION = 'LASED'
LONG_DESCRIPTION = 'A Laser-Atom Interaction Simulator using Quantum Electrodynamics'
with open("../README.md", "r") as fh:
long_description = fh.read()
# Setting up
setup(
# the name must match the folder name 'LASED'
name = "LASED",
version = VERSION,
author = "Manish Patel",
author_email="<[email protected]>",
description = DESCRIPTION,
long_description = long_description,
long_description_content_type = "text/markdown",
packages=find_packages(),
install_requires=[
"numpy >= 1.20",
"scipy >= 1.6.0",
"sympy >= 1.8"
], # add any additional packages that
# needs to be installed along with your package. Eg: 'caer'
keywords=['python', 'laser-atom', 'simulation', 'quantum', 'quantum electrodynamics', 'physics'],
classifiers= [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Physics"
]
)