-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (29 loc) · 975 Bytes
/
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
from distutils.core import setup
setup(
name = "cutiepy",
packages = ["cutiepy"],
package_data = {'cutiepy': ['include/*.h']},
version = "0.0.1-dev",
requires=['cython','numpy','scipy'],
description = "Quantum Mechanics Toolkit",
author = "Stefan Krastanov",
author_email = "[email protected]",
url = "",
download_url = "",
keywords = ["phisics", "quantum"],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 2 - Pre-Alpha",
"Environment :: Other Environment",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries :: Python Modules",
],
long_description = """\
Quantum Mechanics Toolkit
=========================
"""
)