-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathsetup.py
33 lines (31 loc) · 1 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
import io
from setuptools import setup, find_packages
setup(
name="sota-extractor",
version="0.0.29",
description="Automatic SOTA (state-of-the-art) extraction.",
long_description=io.open("README.md", "r").read(),
long_description_content_type="text/markdown",
platforms=["Windows", "POSIX", "MacOS"],
classifiers=[
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
],
keywords="sota table",
author="Robert Stojnic",
author_email="[email protected]",
maintainer="Viktor Kerkez",
maintainer_email="[email protected]",
url="https://github.com/paperswithcode/sota-extractor",
license="Apache-2.0",
packages=find_packages(),
install_requires=io.open("requirements.txt").read().splitlines(),
include_package_data=True,
scripts=[],
entry_points="""
[console_scripts]
sota-extractor=sota_extractor.__main__:cli
""",
)