-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
74 lines (58 loc) · 2.03 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import versioneer
from setuptools import setup, find_packages, Extension
from codecs import open
from os import path
have_cython = False
try:
from Cython.Distutils import build_ext
have_cython = True
except ImportError:
from distutils.command.build_ext import build_ext
mechanics = None
if have_cython:
mechanics = Extension('pycav.mechanics', ['pycav/mechanics.pyx'])
optics = Extension('pycav.optics', ['pycav/optics.pyx'])
pde = Extension('pycav.pde', ['pycav/pde.pyx'])
quantum = Extension('pycav.quantum', ['pycav/quantum.pyx'])
else:
mechanics = Extension('pycav.mechanics', ['pycav/mechanics.c'])
optics = Extension('pycav.optics', ['pycav/optics.c'])
pde = Extension('pycav.pde', ['pycav/pde.c'])
quantum = Extension('pycav.quantum', ['pycav/quantum.c'])
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
cmds = versioneer.get_cmdclass()
cmds["build_ext"] = build_ext
setup(
version=versioneer.get_version(),
cmdclass=cmds,
name='PyCav',
description='PyCav module',
long_description=long_description,
url='https://github.com/PyCav/PyCav-Module',
author='PyCav team 2016',
author_email=' ',
license='BSD',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Education',
'Topic :: Education',
'Topic :: Scientific/Engineering :: Physics',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
keywords='physics simulation education',
ext_modules=[mechanics, pde],
packages=['pycav'],
install_requires=['numpy>=1.1',
'matplotlib',
'scipy',
'notificationcenter'],
)