-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set Development Status to Production/Stable (#14)
- Loading branch information
Showing
2 changed files
with
4 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,3 @@ | ||
# based on https://github.com/pypa/sampleproject | ||
# MIT License | ||
|
||
# Always prefer setuptools over distutils | ||
from setuptools import setup, find_namespace_packages | ||
from os import path | ||
from io import open | ||
|
@@ -26,13 +22,7 @@ | |
author='Utrecht University', | ||
author_email='[email protected]', | ||
classifiers=[ | ||
# How mature is this project? Common values are | ||
# 3 - Alpha | ||
# 4 - Beta | ||
# 5 - Production/Stable | ||
'Development Status :: 4 - Beta', | ||
|
||
# Pick your license as you wish | ||
'Development Status :: 5 - Production/Stable', | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
|
@@ -42,7 +32,7 @@ | |
packages=find_namespace_packages(include=['asreviewcontrib.*']), | ||
python_requires='>=3.7', | ||
install_requires=[ | ||
"asreview", # ~=1.0 | ||
"asreview>=1,<2", | ||
"pandas" | ||
], | ||
extras_require={}, | ||
|