-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
51 lines (41 loc) · 1.58 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
44
45
46
47
48
49
50
51
#!/usr/bin/env python3
# Copyright (c) Facebook, Inc. and its affiliates.
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
import sys
from setuptools import setup, find_packages
VERSION = '1.1.0' # if you update, update parlai/__init__.py too!
if sys.version_info < (3, 7):
sys.exit('Sorry, Python >=3.7 is required for ParlAI.')
with open('README.md', encoding="utf8") as f:
# strip the header and badges etc
readme = f.read().split('--------------------')[-1]
with open('requirements.txt') as f:
reqs = []
for line in f:
line = line.strip()
reqs.append(line)
if __name__ == '__main__':
setup(
name='parlai',
version=VERSION,
description='Unified platform for dialogue research.',
long_description=readme,
long_description_content_type='text/markdown',
url='http://parl.ai/',
python_requires='>=3.7',
packages=find_packages(exclude=('data', 'docs', 'tests', 'parlai_internal*')),
install_requires=reqs,
include_package_data=True,
package_data={'': ['*.txt', '*.md']},
entry_points={
"flake8.extension": ["PAI = parlai.utils.flake8:ParlAIChecker"],
"console_scripts": ["parlai=parlai.__main__:main"],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Natural Language :: English",
],
)