-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (40 loc) · 1.36 KB
/
setup.py
File metadata and controls
43 lines (40 loc) · 1.36 KB
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
import setuptools
with open('README.md', 'r') as f:
long_description = f.read()
with open('requirements.txt') as f:
requires = f.read().splitlines()
setuptools.setup(
name='ondewo-nlu-client',
version='6.7.0',
author='ONDEWO GmbH',
author_email='office@ondewo.com',
description='ONDEWO Natural Language Understanding (NLU) Client library for Python',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/ondewo/ondewo-nlu-client-python',
packages=[
np
for np in filter(
lambda n: n.startswith('ondewo.') or n == 'ondewo',
setuptools.find_packages()
)
],
include_package_data=True,
package_data={
'ondewo.nlu': ['py.typed', '*.pyi'],
'ondewo.qa': ['py.typed', '*.pyi'],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Software Development :: Libraries',
],
python_requires='>=3',
install_requires=requires,
)