-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·53 lines (51 loc) · 1.61 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
from setuptools import setup, find_packages
setup(
name='multicode',
version='0.2.2.dev0',
author='Johann-Mattis List and Robert Forkel',
description='A python package to help avoid pitfalls when using unicode for '
'linguistic data.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
license='Apache 2.0',
url='https://github.com/cldf/multicode',
packages=find_packages(where='src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': [
'multicode=multicode.__main__:main',
],
},
platforms='any',
python_requires='>=3.6',
install_requires=[
'clldutils>=1.13.10',
'csvw',
'segments',
],
extras_require={
'dev': ['flake8', 'wheel', 'twine'],
'test': [
'mock',
'pytest>=3.6',
'pytest-mock',
'pytest-cov',
'coverage>=4.2',
],
},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
],
)