-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
50 lines (48 loc) · 1.47 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
from setuptools import setup, find_packages
setup(
name='segments',
version="2.2.2.dev0",
description='',
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author='Steven Moran and Robert Forkel',
author_email='steven.moran@uzh.ch',
url='https://github.com/cldf/segments',
install_requires=[
'regex',
'csvw>=1.5.6',
'clldutils>=1.7.3',
],
extras_require={
'dev': ['flake8', 'wheel', 'twine'],
'test': [
'pytest>=5',
'pytest-mock',
'pytest-cov',
],
},
license='Apache 2.0',
zip_safe=False,
keywords='tokenizer',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
],
packages=find_packages(where="src"),
package_dir={"": "src"},
include_package_data=True,
entry_points={
'console_scripts': [
"segments = segments.__main__:main",
]
},
)