-
Notifications
You must be signed in to change notification settings - Fork 190
/
setup.py
33 lines (30 loc) · 1.4 KB
/
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
30
31
32
from setuptools import setup, find_packages
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='LibMTL',
version='1.1.5',
description='A PyTorch Library for Multi-Task Learning',
author='Baijiong Lin',
author_email='[email protected]',
url='https://github.com/median-research-group/LibMTL',
packages=find_packages(),
license='MIT',
platforms=["all"],
classifiers=['Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries',],
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=['torch>=1.8.0',
'torchvision>=0.9.0',
'numpy>=1.20']
)