forked from georgian-io/Multimodal-Toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (36 loc) · 1.32 KB
/
setup.py
File metadata and controls
39 lines (36 loc) · 1.32 KB
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
from setuptools import setup, find_packages
__version__ = '0.1.4-alpha'
url = 'https://github.com/georgianpartners/Multimodal-Toolkit'
install_requires = [
'torch',
'transformers==4.13.0',
'numpy',
'tqdm',
'scipy',
'networkx',
'scikit-learn',
'pandas',
]
setup(
name='multimodal_transformers',
packages=find_packages(),
include_package_data=True,
version=__version__,
license='MIT',
description='Multimodal Extension Library for PyTorch HuggingFace Transformers',
author='Ken Gu',
author_email='kgu@georgianpartners.com',
url=url,
download_url='{}/archive/v_{}.tar.gz'.format(url, __version__),
keywords=['pytorch', 'multimodal', 'transformers', 'huggingface'], # Keywords that define your package best
install_requires=install_requires,
python_requires='>=3.6',
classifiers=[
'Development Status :: 3 - Alpha', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers', # Define that your audience are developers
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License', # Again, pick a license
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)