-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (46 loc) · 1.29 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
from setuptools import setup, find_packages
setup(
name='pacs',
version='0.1',
description="Creating partial colexifications from CLDF datasets.",
long_description=open("README.md").read(),
long_description_content_type='text/markdown',
author='Johann-Mattis List',
author_email='mattis.list@lingpy.org',
url='https://github.com/lingpy/pacs',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
packages=find_packages(where='src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
python_requires='>=3.6',
install_requires=[
"lingpy",
"cltoolkit",
'attrs>=18.1',
'pyglottolog>=2.0',
'python-igraph>=0.7.1',
'networkx>=2.1', # We rely on the `node` attribute
],
extras_require={
'dev': [
'tox',
'flake8',
'wheel',
'twine',
],
'test': [
'pytest>=5.0',
'pytest-cov',
'pytest-mock',
'coverage>=4.2',
],
},
)