forked from Den4ikAI/ruaccent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 790 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 790 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
26
27
from setuptools import setup, find_packages
setup(
name='ruaccent',
version='1.0.0',
author='Denis Petrov',
author_email='arduino4b@gmail.com',
description='A Russian text accentuation tool',
license='MIT',
url='https://github.com/Den4ikAI/ruaccent',
packages=find_packages(),
install_requires=[
'huggingface_hub',
'torch==1.13.1',
'transformers',
'sentencepiece'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Operating System :: Microsoft :: Windows',
'Operating System :: Unix',
'Operating System :: MacOS',
],
)