-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (28 loc) · 1.06 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
# Copyright Rein Halbersma 2020-2021.
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
from setuptools import setup, find_packages
setup(
name='gym_blackjack_v1',
version='0.1.0-dev0',
description='OpenAI Gym blackjack environment (v1)',
url='https://github.com/rhalbersma/gym-blackjack-v1',
author='Rein Halbersma',
author_email='[email protected]',
license='Boost Software License 1.0 (BSL-1.0)',
packages=find_packages(where='src'),
package_dir={'': 'src'},
install_requires=[
'aenum', 'gym', 'numpy', 'pylint', 'statsmodels', 'tqdm'
],
python_requires='>=3.6',
classifiers=[
'Development Status :: 2 - Pre-Alpha'
'Intended Audience :: Science/Research'
'License :: OSI Approved :: Boost Software License 1.0 (BSL-1.0)'
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
)