forked from glottolog/glottolog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (50 loc) · 1.45 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
from setuptools import setup, find_packages
setup(
name='pyglottolog',
version='1.2.2.dev0',
author='Robert Forkel',
author_email='[email protected]',
description='python package for glottolog data curation',
keywords='data linguistics',
license='',
url='https://github.com/clld/glottolog',
packages=find_packages(),
platforms='any',
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*',
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': ['glottolog=pyglottolog.__main__:main'],
},
install_requires=[
'six>=1.9',
'clldutils>=2.5.2',
'sqlalchemy',
'tqdm',
'pybtex>=0.20',
'latexcodec',
'unidecode',
'whoosh',
'attrs>=18.1',
'pycountry>=17.01.08',
'termcolor',
'newick',
'markdown',
'bs4',
'requests',
],
extras_require={
'dev': ['tox>=2.9', 'flake8', 'pep8-naming', 'wheel', 'twine'],
'test': ['mock>=2', 'pytest>=3.3', 'pytest-mock', 'pytest-cov'],
},
long_description='',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)