Add Python 3 package targets

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
Roberto Rosario
2019-05-10 01:45:47 -04:00
parent 45ca7ea480
commit 8aa97c7fd7
2 changed files with 10 additions and 1 deletions

View File

@@ -1,2 +1,5 @@
[bdist_wheel]
universal = 1
[wheel] [wheel]
python-tag = py2 python-tag = py2.py3

View File

@@ -79,6 +79,11 @@ setup(
'Natural Language :: English', 'Natural Language :: English',
'Programming Language :: Python', 'Programming Language :: Python',
'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP', 'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application', 'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
'Topic :: Communications :: File Sharing', 'Topic :: Communications :: File Sharing',
@@ -91,6 +96,7 @@ setup(
name=PACKAGE_NAME, name=PACKAGE_NAME,
packages=find_packages(PACKAGE_DIR), packages=find_packages(PACKAGE_DIR),
platforms=['any'], platforms=['any'],
python_requires = '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
scripts=['mayan/bin/mayan-edms.py'], scripts=['mayan/bin/mayan-edms.py'],
url='https://gitlab.com/mayan-edms/mayan-edms', url='https://gitlab.com/mayan-edms/mayan-edms',
version=mayan.__version__, version=mayan.__version__,