Skip to content

Commit

Permalink
pip release of parlai (facebookresearch#2540)
Browse files Browse the repository at this point in the history
* Setup.py updated. [long]
  • Loading branch information
stephenroller authored Apr 8, 2020
1 parent e9725ca commit 1bbe96b
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,22 @@
if __name__ == '__main__':
setup(
name='parlai',
version='0.1.0',
description='Unified API for accessing dialog datasets.',
version='0.1.20200408',
description='Unified platform for dialogue research.',
long_description=readme,
url='http://parl.ai/',
license=license,
python_requires='>=3.6',
packages=find_packages(
exclude=('data', 'docs', 'downloads', 'examples', 'logs', 'tests')
exclude=('data', 'docs', 'examples', 'tests', 'parlai_internal',)
),
install_requires=reqs.strip().split('\n'),
include_package_data=True,
entry_points={"flake8.extension": ["PAI = parlai.utils.flake8:ParlAIChecker"]},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Natural Language :: English",
],
)

0 comments on commit 1bbe96b

Please sign in to comment.