-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (34 loc) · 996 Bytes
/
Copy pathsetup.py
File metadata and controls
42 lines (34 loc) · 996 Bytes
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
"""
This file is part of clcell which is released under MIT.
See file LICENSE for full license details.
"""
from setuptools import find_packages, setup
# Package build parameters.
setup_info = dict(
name='clcell',
use_scm_version=True,
setup_requires=['setuptools_scm'],
install_requires=[
'pyopencl>=2015.2',
'numpy',
],
description='OpenCL-accelerated cellular automata simulator',
long_description_content_type='text/markdown',
url='https://github.com/Foxbud/clcell',
author='Garrett Fairburn',
license='MIT',
packages=find_packages(),
classifiers=[
'Topic :: Scientific/Engineering :: Artificial Life',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Environment :: Other Environment',
'Intended Audience :: Science/Research',
'Natural Language :: English',
],
)
# Load README.
with open('README.md', 'r') as f_in:
setup_info['long_description'] = f_in.read()
setup(**setup_info)