-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
63 lines (55 loc) · 1.82 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
#!/usr/bin/env python
import setuptools
from setuptools import find_packages
from distutils.core import setup
from distutils.core import Extension
from distutils import log
import re, os
packages = find_packages(exclude=('tests', 'doc'))
provides = ['taurex_cuda', ]
requires = []
install_requires = ['taurex', 'pycuda',]
entry_points = {'taurex.plugins': 'cuda = taurex_cuda'}
version="1.0.1"
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Operating System :: Unix',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries',
'Environment :: GPU',
'Environment :: GPU :: NVIDIA CUDA'
]
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='taurex_cuda',
author="Ahmed Faris Al-Refaie",
author_email="[email protected]",
license="BSD",
version=version,
description='TauREx 3 accelerator plugin using nVidia CUDA',
classifiers=classifiers,
packages=packages,
long_description=long_description,
url='https://github.com/ucl-exoplanets/taurex-cuda_public/',
long_description_content_type="text/markdown",
keywords=['exoplanet',
'retrieval',
'taurex',
'taurex3',
'cuda',
'gpu',
'atmosphere',
'atmospheric'],
entry_points=entry_points,
provides=provides,
requires=requires,
install_requires=install_requires)