-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
59 lines (43 loc) · 1.83 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
from setuptools import setup, find_packages
# Arguments marked as "Required" below must be included for upload to PyPI.
# Fields marked as "Optional" may be commented out.
with open("README.md", "r", encoding="utf8") as fh:
long_description = fh.read()
setup(
# $ pip install sampleproject
name='ro-diacritics', # Required
version='0.9.4.2', # Required
description='Python API for Romanian diacritics restoration', # Required
long_description=long_description,
long_description_content_type="text/markdown",
maintainer="Andrei Paraschiv",
maintainer_email="andrei@thephpfactory.com",
author="Andrei Paraschiv",
author_email="andrei@thephpfactory.com",
url='https://github.com/AndyTheFactory/RO-Diacritics', # Optional
classifiers=[ # Optional
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Human Machine Interfaces',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Text Processing',
'Topic :: Text Processing :: Filters',
'Topic :: Text Processing :: General',
'Topic :: Text Processing :: Indexing',
'Topic :: Text Processing :: Linguistic',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
],
keywords='romanian diacritcs language restoration diacritice python',
# package_dir={"": "."},
packages=find_packages(),
install_requires=['torch', 'torchtext', 'numpy', 'tqdm', 'nltk', 'scikit-learn',],
zip_safe=False,
)