forked from lkk688/MultiModalClassifier
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 734 Bytes
/
setup.py
File metadata and controls
22 lines (19 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
with open("README.md", "r") as readme_file:
readme = readme_file.read()
requirements = ["numpy", "tensorflow", "pillow", "matplotlib"]
setup(
name="MultimodalClassifier",
version="0.0.1",
author="Kaikai Liu",
author_email="kaikai.liu@sjsu.edu",
description="A multimodal classifier based on Tensorflow and Pytorch",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/lkk688/MultiModalClassifier",
packages=['TFClassifier'], #find_packages(exclude=['DatasetTools', 'tests', 'data', 'outputs']),
install_requires=['numpy'],
classifiers=[
"Programming Language :: Python :: 3.8",
],
)