-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
43 lines (42 loc) · 1.3 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
from setuptools import setup, find_packages
setup(
name='nlm-utils',
version='0.1.2',
description='Common utilities used by all nlm-* libraries.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/nlmatics/nlm-utils',
author='Ambika Sukla',
author_email='[email protected]',
license='Apache License 2.0',
packages=find_packages(),
install_requires=[
"aiohttp==3.8.5",
"dateparser",
"dnspython==2.1.0",
"word2number",
"minio==7.1.0",
"money==1.3.0",
"msgpack==1.0.2",
"nltk==3.6.2",
"numpy==1.24.4",
"openai",
"pymongo==3.11.4",
"redis==3.5.3",
"tiktoken",
"urllib3==1.26.6",
"xxhash==2.0.2",
"python-magic==0.4.22",
"dicttoxml"
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Intended Audience :: Legal Industry',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3 :: Only'
],
)