-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
26 lines (22 loc) · 814 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
import setuptools
with open("requirements.txt", "r") as f:
requirements = f.read().splitlines()
with open("requirements-dev.txt", "r") as f:
requirements_dev = f.read().splitlines()
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="f1fashiondataset",
version="0.0.1",
description="Tool for reproducing the HERMES paper benchmark results on the F1 fashion dataset",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/etidav/f1fashiondataset",
author="Etienne DAVID",
author_email="[email protected]",
license="MIT",
packages=["f1fashiondataset"],
python_requires=">=3.7",
install_requires=requirements,
extras_require={"dev": requirements_dev}
)