We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 209a8fe commit a98fed6Copy full SHA for a98fed6
setup.py
@@ -11,16 +11,19 @@
11
with open('requirements.txt', encoding='utf-8') as f:
12
reqs = f.read()
13
14
+pkgs = [p for p in find_packages() if p.startswith('fastNLP')]
15
+print(pkgs)
16
+
17
setup(
18
name='FastNLP',
- version='0.4.9',
19
+ version='0.4.10',
20
url='https://github.com/fastnlp/fastNLP',
21
description='fastNLP: Deep Learning Toolkit for NLP, developed by Fudan FastNLP Team',
22
long_description=readme,
23
long_description_content_type='text/markdown',
24
license='Apache License',
25
author='FudanNLP',
26
python_requires='>=3.6',
- packages=find_packages(),
27
+ packages=pkgs,
28
install_requires=reqs.strip().split('\n'),
29
)
0 commit comments