forked from abhijithneilabraham/tableQA
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·22 lines (19 loc) · 946 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·22 lines (19 loc) · 946 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
install_requires = ['responder', 'graphql-core==2.3', 'graphene==2.1.8', 'numpy==1.18.0', 'transformers[tf-cpu]==3.0.2', 'rake_nltk', 'nltk','tensorflow_hub','pandas','matplotlib', 'cryptography', 'sqlalchemy_utils', 'sqlalchemy', 'awswrangler==1.7.0']
setuptools.setup(
name="tableqa", # Replace with your own username
version="0.0.11",
author="Abhijith Neil Abraham, Fariz Rahman",
author_email="abhijithneilabrahampk@gmail.com,farizrahman4u@gmail.com",
description="Tool for querying natural language on tabular data",
long_description=long_description,
long_description_content_type="text/markdown",
license='GNU GPL v2',
url="https://github.com/abhijithneilabraham/tableQA",
install_requires=install_requires,
packages=setuptools.find_packages(),
python_requires='>=3.6',
include_package_data=True
)