-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
29 lines (25 loc) · 835 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
import setuptools
# version.py defines the VERSION variable.
# We use exec here so we don't import repro whilst setting up.
VERSION = {}
with open("repro/version.py", "r") as version_file:
exec(version_file.read(), VERSION)
setuptools.setup(
name="repro",
version=VERSION["VERSION"],
author="Daniel Deutsch",
description="An open-source library for reproducing results from research papers",
url="https://github.com/danieldeutsch/repro",
packages=setuptools.find_packages(exclude=["tests", "tests.*"]),
entry_points={"console_scripts": ["repro=repro.__main__:main"]},
python_requires=">=3.6",
include_package_data=True,
install_requires=[
"datasets>=1.2.1",
"docker==5.0.0",
"joblib",
"overrides==3.1.0",
"pytest",
"six==1.16.0",
],
)