-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
45 lines (42 loc) · 1.46 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
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from setuptools import setup, find_packages
install_requires = ["gym", "six"]
with open("README.md", "r") as fp:
long_description = fp.read()
setup(
name="fomoro-pyoneer",
version="0.3.0",
author="Fomoro AI",
author_email="[email protected]",
description="Tensor utilities, reinforcement learning, and more!",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/fomorians/pyoneer",
download_url="https://github.com/fomorians/pyoneer/archive/v0.3.tar.gz",
license="Apache 2.0",
packages=find_packages(),
install_requires=install_requires,
extras_require={"dev": ["pre-commit"]},
include_package_data=True,
keywords=[
"tensorflow",
"machine learning",
"reinforcement learning",
"eager execution",
"deep learning",
],
classifiers=[
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
],
)