-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·55 lines (53 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
53
54
55
from setuptools import setup, find_packages
setup(
name='pyclics',
version='1.1.2.dev0',
description="creating colexification networks from lexical data",
long_description=open("README.md").read(),
long_description_content_type='text/markdown',
author='Johann-Mattis List and Robert Forkel',
author_email='clics@shh.mpg.de',
url='https://github.com/clics/clics2',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
packages=find_packages(where='src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
python_requires='>=3.5',
install_requires=[
'attrs>=18.1',
'pylexibank>=0.7,<0.10',
'pyconcepticon',
'pyglottolog',
'clldutils~=2.0',
'geojson',
'python-igraph',
'networkx',
'unidecode'
],
extras_require={
'dev': [
'tox',
'flake8',
'wheel',
'twine',
],
'test': [
'mock',
'pytest>=3.6',
'pytest-mock',
'pytest-cov',
'coverage>=4.2',
],
},
entry_points={
'console_scripts': ['clics=pyclics.__main__:main'],
},
)