-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (35 loc) · 1.08 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
#!/usr/bin/env python
from setuptools import setup, find_packages
version = '1.1.0'
packages = find_packages()
print(packages)
setup(
# Metadata
name='ipython-futhark',
version=version,
description="Futhark language embedding into IPython",
long_description_markdown_filename='README.md',
keywords='futhark ipython gpu',
author='Titouan Christophe',
author_email='[email protected]',
url='https://github.com/titouanc/ipython-futhark',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2',
'Framework :: IPython',
'Framework :: Jupyter'
],
# Package data
packages=find_packages(),
include_package_data=True,
package_data={'': ['README.md', 'Demo.ipynb']},
zip_safe=True,
# Dependencies
setup_requires=['setuptools-markdown'],
install_requires=['numpy', 'ipython'],
extras_require={'opencl': ['pyopencl']}
)