forked from Delaunay/sample-space
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (41 loc) · 1.26 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Installation script for Sample space."""
from setuptools import setup
import os
repo_root = os.path.dirname(os.path.abspath(__file__))
args = dict(
name='sspace',
version='0.0.0',
description='Sample Space Builder',
long_description=open(
os.path.join(repo_root, "README.rst"), "rt", encoding="utf8"
).read(),
author='Pierre Delaunay',
author_email="[email protected]",
url="https://github.com/epistimio/sspace",
packages=[
'sspace',
'sspace.backends',
'sspace.orion',
],
setup_requires=['setuptools'],
install_requires=[
'scipy',
'ConfigSpace'
]
)
args["classifiers"] = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
] + [("Programming Language :: Python :: %s" % x) for x in "3 3.7 3.8 3.9 3.10".split()]
if __name__ == '__main__':
setup(**args)