-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
47 lines (41 loc) · 1.37 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
"""Golem: An Algorithm for Robust Experiment and Process Optimization
"""
import versioneer
from setuptools import setup, Extension
import numpy as np
# readme file
def readme():
with open('README.md') as f:
return f.read()
# extensions
ext_modules = [Extension("golem.extensions",
["src/golem/extensions.c"],
include_dirs=[np.get_include()])]
# -----
# Setup
# -----
setup(name='matter-golem',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Golem: An Algorithm for Robust Experiment and Process Optimization',
long_description=readme(),
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
],
url='https://github.com/aspuru-guzik-group/golem',
author='Matteo Aldeghi',
author_email='[email protected]',
license='MIT',
packages=['golem'],
package_dir={'': 'src'},
zip_safe=False,
tests_require=['pytest', 'deap'],
install_requires=['numpy', 'scipy>=1.4', 'scikit-learn', 'pandas'],
python_requires=">=3.7",
ext_modules=ext_modules
)