-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 992 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 992 Bytes
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
from setuptools import setup, find_packages
setup(
name="multilingual-transformer",
version="0.1.0",
description="A multilingual transformer model with language-specific layers",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url="https://github.com/Cheril311/LSLTransformerEncoder/", # Replace with your repo URL
packages=find_packages(include=['models']),
install_requires=[
'torch>=1.9.0', # Specify the PyTorch version required
'fairseq>=0.10.2', # Specify the fairseq version required
'numpy>=1.21.0',
# Add any other dependencies your project needs
],
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.8', # Specify the Python version required
include_package_data=True,
)