|
a |
|
b/setup.py |
|
|
1 |
|
|
|
2 |
import codecs |
|
|
3 |
from setuptools import setup, find_packages |
|
|
4 |
|
|
|
5 |
with codecs.open('README.md', 'r', 'utf8') as reader: |
|
|
6 |
long_description = reader.read() |
|
|
7 |
|
|
|
8 |
|
|
|
9 |
with codecs.open('requirements.txt', 'r', 'utf8') as reader: |
|
|
10 |
install_requires = list(map(lambda x: x.strip(), reader.readlines())) |
|
|
11 |
|
|
|
12 |
|
|
|
13 |
setup( |
|
|
14 |
name='docproduct', |
|
|
15 |
version='0.2.0', |
|
|
16 |
packages=find_packages(), |
|
|
17 |
url='https://github.com/re-search/DocProduct', |
|
|
18 |
license='MIT', |
|
|
19 |
author='MedicalQATeam', |
|
|
20 |
author_email='SanGupta.ML@gmail.com', |
|
|
21 |
description='BERT in TF2.0 for Medical QA info retrieval + GPT2 for answer generation', |
|
|
22 |
long_description='None so far', |
|
|
23 |
long_description_content_taype='text/markdown', |
|
|
24 |
python_requires='>=3.5.0', |
|
|
25 |
install_requires=install_requires, |
|
|
26 |
classifiers=( |
|
|
27 |
"Programming Language :: Python :: 2.7", |
|
|
28 |
"Programming Language :: Python :: 3.6", |
|
|
29 |
"License :: OSI Approved :: MIT License", |
|
|
30 |
"Operating System :: OS Independent", |
|
|
31 |
), |
|
|
32 |
) |