-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
60 lines (52 loc) · 1.69 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
48
49
50
51
52
53
54
55
56
57
58
59
60
"""Setup for the skift package."""
# !/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import setuptools
INSTALL_REQUIRES = [
'torch',
'torchvision',
'gym',
'tensorboard',
'tqdm'
]
INSTALL_REQUIRES_NOTBOOK = [
'matplotlib', 'IPython', 'ipykernel'
]
DEV_REQUIRES = [
# testing and coverage
'pytest', 'coverage', 'pytest-cov', 'codecov', 'sphinx', 'sphinx-glpi-theme',
]
path = os.path.abspath(os.path.dirname(__file__))
with open(os.path.abspath(path + '/README.md')) as f:
README = f.read()
setuptools.setup(
author="french ai team",
name='blobrl',
version='0.1.3',
license="Apache-2.0",
description='Reinforcement learning with pytorch ',
long_description=README,
long_description_content_type='text/markdown',
url='https://github.com/french-ai/reinforcement',
packages=setuptools.find_packages(),
include_package_data=True,
download_url='https://github.com/french-ai/reinforcement/archive/V0.1.3.tar.gz',
python_requires=">=3.6.1",
install_requires=INSTALL_REQUIRES,
extras_require={
'dev': INSTALL_REQUIRES + INSTALL_REQUIRES_NOTBOOK + DEV_REQUIRES,
"notebook": INSTALL_REQUIRES + INSTALL_REQUIRES_NOTBOOK
},
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
],
)