-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
30 lines (26 loc) · 953 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
from pathlib import Path
def read_long_description(file="README.md"):
return Path(file).read_text(encoding='utf-8')
def read_requirements(file="requirements.txt"):
with open(file, 'r', encoding='utf-8') as f:
return [line.strip() for line in f if line.strip() and not line.startswith('#')]
setuptools.setup(
name="vqasynth",
version="0.0.1",
author="Remyx AI",
author_email="[email protected]",
description="Compose multimodal datasets",
long_description=read_long_description(),
long_description_content_type='text/markdown',
url="https://github.com/remyxai/VQASynth",
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=read_requirements(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.10',
)