-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
45 lines (42 loc) · 1.14 KB
/
setup.cfg
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
[metadata]
name = qutip-symbolic
url = https://github.com/qutip/qutip-symbolic
description = A set of useful extensions to sympy.physics.quantum.
long_description = file: README.md
long_description_content_type = text/markdown; variant=GFM
keywords = quantum, physics, symbolic
license = BSD 3-Clause License
license_files = LICENSE
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Programming Language :: Python
Programming Language :: Python :: 3
Topic :: Scientific/Engineering
Operating System :: MacOS
Operating System :: POSIX
Operating System :: Unix
Operating System :: Microsoft :: Windows
author = Robert Johansson, Eunjong Kim, Alexander Pitchford, Simon Cross
author_email = [email protected]
platforms = Linux, Mac OSX, Unix, Windows
version = 0.0.1dev
[options]
package_dir=
=src
packages = find:
include_package_data = True
install_requires =
sympy==1.3
[options.packages.find]
where = src
[options.extras_require]
tests =
pytest>=5.2
notebooks =
jupyter
jupytext
full =
%(tests)s
%(notebooks)s