-
Notifications
You must be signed in to change notification settings - Fork 88
/
setup.py
43 lines (36 loc) · 1.34 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
# Copyright (c) 2019 Eric Steinberger
import os.path as osp
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open('%s/%s' % (osp.dirname(osp.realpath(__file__)), 'requirements.txt')) as f:
requirements = [line.strip() for line in f]
with open('%s/%s' % (osp.dirname(osp.realpath(__file__)), 'requirements_dist.txt')) as f:
requirements_dist = [line.strip() for line in f]
setuptools.setup(
name="PokerRL",
version="0.0.3",
author="Eric Steinberger",
author_email="[email protected]",
description="A framework for Reinforcement Learning in Poker.",
license='MIT',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/TinkeringCode/PokerRL",
install_requires=requirements,
extras_require={
'distributed': requirements_dist,
},
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
],
packages=setuptools.find_packages(),
)