forked from Guillemdb/FractalAI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·29 lines (27 loc) · 1.09 KB
/
setup.py
File metadata and controls
executable file
·29 lines (27 loc) · 1.09 KB
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
from setuptools import setup, find_packages
setup(
name="fractalai",
description="FractalAI - swarm intelligence for the masses.",
version="0.0.1",
license="Apache 2.0",
author="Guillem Duran",
author_email="guillem.db@gmail.com",
url="https://github.com/FragileTheory/FractalAI",
download_url='https://github.com/FragileTheory/FractalAI',
packages=find_packages(exclude=("fractalai.tests",)),
keywords=["fractalai", "reinforcement learning", "artificial intelligence",
"monte carlo", "automaton-based"],
install_requires=[], # "numpy", "gym[atari]", "networkx"],
package_data={"": ["LICENSE", "README.md"]},
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Libraries"
]
)