-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 1.1 KB
/
setup.py
File metadata and controls
37 lines (35 loc) · 1.1 KB
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
from setuptools import setup, find_packages
with open('README.md', 'r') as file_readme:
long_desc = file_readme.read()
setup(
name='qom',
version='1.1.0',
author='Sampreet Kalita',
author_email='[email protected]',
desctiption='The Quantum Optomechanics Toolbox',
long_description=long_desc,
long_description_content_type='text/markdown',
keywords=['quantum', 'optomechanics', 'toolbox', 'python3'],
url='https://github.com/sampreet/qom',
download_url='https://github.com/Sampreet/qom/archive/refs/tags/v1.1.0.tar.gz',
packages=find_packages(),
classifiers=[
'Programming Language :: Python :: 3',
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering'
],
license='BSD',
install_requires=[
'numpy',
'scipy',
'sympy',
'matplotlib',
'seaborn',
],
python_requires='>=3.8',
zip_safe=False,
include_package_data=True
)