-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py.in
More file actions
26 lines (23 loc) · 1.02 KB
/
setup.py.in
File metadata and controls
26 lines (23 loc) · 1.02 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
#!/usr/bin/env python
from distutils.core import setup
setup(name='ALPSCore-Python',
version='0.1',
description='Python bindings for ALPSCore',
long_description='Python bindings for ALPSCore with precompiled shared object files.',
maintainer='Alexander Gaenko',
url='https://github.com/ALPSCore/ALPSCore-Python',
license='GNU General Public License v2 (GPLv2)',
# platforms = '${platform}',
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: POSIX',
'Programming Language :: C++',
'Programming Language :: Python :: 2',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Software Development :: Libraries'],
package_data={'alps.alps_c': ['*.so']},
packages=['alps','alps.alps_c'])