-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
59 lines (56 loc) · 2 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
# -*- coding: utf-8 -*-
"""
# lingtypology
Lingtypology is a Python3 tool for linguistic interactive mapping and online linguistic databases API.
It is inspired by [R-package](https://github.com/ropensci/lingtypology) created by [Agrizolamz](https://github.com/agricolamz).
It uses the same phylosophy and provides similar functionality.
## Installation
The package is available in PyPI.
Therefore, you can install it by running:
Locally: `pip3 install lingtypology --user`
Globally (not recommended): `sudo pip3 install lingtypology`
## Usage
Lingtypology package contains `LingMap` class that allows to draw interactive maps, `glottolog` library that allows to interact with Glottolog data and `db_apis` that allows to interact with different other linguistic databases.
For more informations consult [Lingtypology: Documentation](https://oneadder.github.io/lingtypology/).
"""
from setuptools import setup
setup(
name='lingtypology',
version="0.8.7",
description='A tool for linguistic typology.',
long_description=__doc__,
long_description_content_type='text/markdown',
url='https://github.com/OneAdder/lingtypology',
author='Michael Voronov',
author_email='mikivo@list.ru',
license='GPLv3',
packages=['lingtypology'],
python_requires='>=3.5',
include_package_data=True,
zip_safe=False,
install_requires=[
'folium',
'branca',
'jinja2',
'pandas',
'pyglottolog',
'colour',
'matplotlib',
'selenium'
],
extras_require={
'test': [
'pytest>=3.6',
'pytest-cov',
'coverage>=4.2',
],
},
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Text Processing :: Linguistic',
],
)