-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
54 lines (51 loc) · 1.91 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
"""
Setup-Script for loanpy
"""
from setuptools import setup, find_packages
from pathlib import Path
setup(
name='loanpy',
description='a linguistic toolkit for detecting old loanwords by predicting, \
evaluating and applying changes in horizontal and vertical lexical transfers',
long_description=open("README.rst").read(),
author='Viktor Martinović',
author_email='viktor.martinovic@hotmail.com',
version='3.0.4',
packages=find_packages(),
data_files=[("loanpy", ["loanpy/ipa_all.csv"])],
include_package_data=True,
extras_require={
"test": ["pytest>=7.1.2", "coverage>=7.2.2"],
"dev": ["wheel", "twine", "sphinx"]
},
keywords=['linguistics', 'loanwords', 'language-contact',
'sound-change-applier'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
"Topic :: Text Processing :: Linguistic",
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
url='https://github.com/martino-vic/loanpy',
download_url='https://github.com/LoanpyDataHub/loanpy/archive/3.0.0.tar.gz',
license='MIT',
platforms=["Windows", "macOS", "Linux"],
python_requires=">=3.7",
project_urls={
"documentation": "https://loanpy.readthedocs.io/en/latest/home.html",
"citation": "https://zenodo.org/record/7893906",
"continuous integration": "https://dl.circleci.com/status-badge/redirect/gh/LoanpyDataHub/loanpy/tree/main",
"test coverage": "https://coveralls.io/github/LoanpyDataHub/loanpy",
"database": "https://github.com/LoanpyDataHub"
}
)