generated from rom1504/python-template
-
Notifications
You must be signed in to change notification settings - Fork 65
/
setup.py
50 lines (46 loc) · 1.8 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
from setuptools import setup, find_packages
from pathlib import Path
import os
if __name__ == "__main__":
with Path(Path(__file__).parent, "README.md").open(encoding="utf-8") as file:
long_description = file.read()
def _read_reqs(relpath):
fullpath = os.path.join(os.path.dirname(__file__), relpath)
with open(fullpath) as f:
return [s.strip() for s in f.readlines() if (s.strip() and not s.startswith("#"))]
REQUIREMENTS = _read_reqs("requirements.txt")
setup(
name="video2dataset",
packages=find_packages(),
include_package_data=True,
version="1.3.0",
license="MIT",
description="Easily create large video dataset from video urls",
long_description=long_description,
long_description_content_type="text/markdown",
entry_points={"console_scripts": ["video2dataset=video2dataset.main:main"]},
author="Maciej Kilian",
author_email="[email protected]",
url="https://github.com/iejMac/video2dataset",
data_files=[
(
".",
[
"README.md",
"video2dataset/configs/caption.yaml",
"video2dataset/configs/default.yaml",
"video2dataset/configs/downsample_ml.yaml",
"video2dataset/configs/optical_flow.yaml",
],
)
],
keywords=["machine learning"],
install_requires=REQUIREMENTS,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
],
)