Skip to content

Commit

Permalink
Add python_requires to help pip and Trove classifiers for PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Apr 14, 2020
1 parent f4ae696 commit 258abc5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,15 @@ def find_version(*file_paths):
install_requires=[
'tqdm', 'requests', 'torch', 'numpy', 'sentencepiece'
],
python_requires='>=3.5',
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3 :: Only',
],

# Package info
packages=find_packages(exclude=('test', 'test.*')),
Expand Down

0 comments on commit 258abc5

Please sign in to comment.