-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (26 loc) · 914 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
with open("README.md", "r") as file:
long_description = file.read()
with open('requirements.txt') as file:
required = file.read().splitlines()
setuptools.setup(
name="vqaloader",
version="0.1.4",
author="Philipp J. Roesch",
author_email="[email protected]",
description="vqaloader",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/phiyodr/vqaloader",
classifiers=[
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Recognition"
],
packages=setuptools.find_packages(),
python_requires='>=3.6',
package_data={
# If any package contains *.txt or *.rst files, include them:
"": ["*.csv", "*.json"]},
install_requires=required
)