forked from OneAdder/lingtypology
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (34 loc) · 881 Bytes
/
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
from setuptools import setup
setup(
name='lingtypology',
version='0.1',
description='A linguistic tool for interactive mapping.',
url='https://github.com/OneAdder/lingtypology',
author='Michael Voronov',
author_email='[email protected]',
license='GPLv3',
packages=['lingtypology'],
python_requires='>=3.5',
include_package_data=True,
zip_safe=False,
install_requires=[
'folium',
'branca',
'jinja2',
'pandas',
'pyglottolog',
],
extras_require={
'test': [
'pytest>=3.6',
'pytest-cov',
'coverage>=4.2',
],
},
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)