-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (31 loc) · 976 Bytes
/
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
import pathlib
from setuptools import setup
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name='sastadev',
version='0.2.4',
description='Linguistic functions for SASTA tool',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/UUDigitalHumanitieslab/sastadev',
author='Research Software Lab - Centre for Digital Humanities - Utrecht University',
author_email='[email protected]',
package_dir={'': 'src'},
packages=['sastadev'],
python_requires='>=3.7, <4',
package_data={'sastadev': ['py.typed', 'data/**/*']},
license='BSD-3-Clause',
entry_points={
'console_scripts': [
'sastadev=sastadev.__main__:main'
],
},
install_requires=[
'auchann',
'lxml',
'openpyxl',
'XlsxWriter',
'typing-extensions'
],
)