-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1.1 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
33
34
35
36
37
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='torchtoolkit',
author='Nathan Fradet',
url='https://github.com/Natooz/TorchToolkit',
packages=find_packages(exclude=("test",)),
version='0.0.5',
license='MIT',
description='Useful functions to use with PyTorch',
long_description=long_description,
long_description_content_type="text/markdown",
keywords=[
'artificial intelligence',
'deep learning',
'transformer',
'nlp'
],
install_requires=[
'torch>=1.10.0',
'numpy>=1.19.0',
'tqdm'
],
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Multimedia :: Sound/Audio :: MIDI',
'License :: OSI Approved :: MIT License',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent"
]
)