forked from SasView/sasmodels
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (55 loc) · 1.85 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def find_version(package):
"""Read package version string from __init__.py"""
import os
with open(os.path.join(package, '__init__.py')) as fid:
for line in fid.readlines():
if line.startswith('__version__'):
line = line[:line.find('#')] # strip comment, if any
version = line.split('=', 2)[1].strip()
if version[0] != version[-1] or version[0] not in "\"'":
break
return version[1:-1]
raise RuntimeError("Could not read version from %s/__init__.py"%package)
setup(
name='sasmodels',
version=find_version('sasmodels'),
description="sasmodels package",
long_description=open('README.rst').read(),
author="SasView Collaboration",
author_email="[email protected]",
url="http://www.sasview.org",
keywords="small-angle x-ray and neutron scattering analysis",
download_url="https://github.com/SasView/sasmodels",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: Public Domain',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: C',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Physics',
],
packages=[
'sasmodels',
'sasmodels.models',
'sasmodels.custom'
],
package_data={
'sasmodels.models': ['*.c', 'lib/*.c'],
'sasmodels': ['*.c', '*.cl'],
},
install_requires = [
],
extras_require = {
'OpenCL': ["pyopencl"],
'Bumps': ["bumps"],
'TinyCC': ["tinycc"],
},
)