-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
33 lines (27 loc) · 761 Bytes
/
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
#!/usr/bin/env python3
from setuptools import setup, find_packages
REQUIRES = [
"dash==1.17.0",
"dash-bootstrap-components==0.10.7",
"jupyter==1.0.0",
"numpy",
"pandas==0.25.1",
"pymemcache==3.4.0",
"rlpyt",
"rpy2==3.3.6",
"torch==1.4.0",
]
DEPENDENCY_LINKS = [
"git+https://github.com/astooke/rlpyt.git@f04f23d#egg=rlpyt-0.1.1.dev0",
]
setup(
name="airlab-retail",
version="1.0.2",
description="Library to simulate the ordering policy of a grocery store in order to reduce waste",
long_description=open("README.md").read(),
author="Sami Jullien",
url="https://github.com/samijullien/airlab-retail",
license="MIT",
install_requires=REQUIRES,
dependency_links=DEPENDENCY_LINKS,
)