-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
51 lines (44 loc) · 1.4 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
'''
Created on Sep 24, 2011
@author: sean
'''
from setuptools import setup, find_packages
from os.path import join
import numpy
include_dirs = numpy.get_include()
try:
long_description = open('README.rst').read()
except IOError as err:
long_description = str(err)
try:
exec open(join('clyther', 'version.py')).read()
except IOError as err:
__version__ = '???'
setup(
name='Clyther',
version=__version__,
author='Enthought, Inc.',
author_email='[email protected]',
url='http://srossross.github.com/Clyther/',
classifiers=[c.strip() for c in """\
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Operating System :: MacOS
Operating System :: Microsoft :: Windows
Operating System :: OS Independent
Operating System :: POSIX
Operating System :: Unix
Programming Language :: Python
Topic :: Scientific/Engineering
Topic :: Software Development
Topic :: Software Development :: Libraries
""".splitlines() if len(c.strip()) > 0],
description='OpenCL Python integration',
long_description=long_description,
license='BSD',
packages=find_packages(),
platforms=["Windows", "Linux", "Mac OS-X", "Unix", "Solaris"],
install_requires=['meta', 'opencl-for-python']
)