Skip to content

Commit a2d4db0

Browse files
committed
prepare for py3+2 release
1 parent 7d22590 commit a2d4db0

File tree

2 files changed

+29
-2
lines changed

2 files changed

+29
-2
lines changed

setup.cfg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
ignore = E124,E128,E129,E201,E202,E225,E226,E231,E265,E271,E302,E303,F401,E402,E501,W503,E731,F811,F821,F841
33
exclude = cwltool/schemas
44

5+
[bdist_wheel]
6+
universal = 1
7+
58
[aliases]
69
test=pytest
710

setup.py

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@
3232
author_email='[email protected]',
3333
url="https://github.com/common-workflow-language/cwltool",
3434
download_url="https://github.com/common-workflow-language/cwltool",
35-
license='Apache 2.0',
35+
# platforms='', # empty as is conveyed by the classifier below
36+
# license='', # empty as is conveyed by the classifier below
3637
packages=["cwltool", 'cwltool.tests'],
3738
package_dir={'cwltool.tests': 'tests'},
3839
package_data={'cwltool': ['schemas/draft-2/*.yml',
@@ -74,8 +75,31 @@
7475
cmdclass={'egg_info': tagger},
7576
classifiers=[
7677
'Development Status :: 5 - Production/Stable',
78+
'Environment :: Console',
79+
'Intended Audience :: Developers',
80+
'Intended Audience :: Science/Research',
81+
'Intended Audience :: Healthcare Industry',
82+
'License :: OSI Approved :: Apache Software License',
83+
'Natural Language :: English',
84+
'Operating System :: MacOS :: MacOS X',
7785
'Operating System :: POSIX',
86+
'Operating System :: POSIX :: Linux',
7887
'Operating System :: OS Independent',
79-
'Programming Language :: Python :: 2 :: Only',
88+
# 'Operating System :: Microsoft :: Windows', # soon!
89+
'Programming Language :: Python :: 2',
90+
'Programming Language :: Python :: 2.7',
91+
'Programming Language :: Python :: 3',
92+
'Programming Language :: Python :: 3.3',
93+
'Programming Language :: Python :: 3.4',
94+
'Programming Language :: Python :: 3.5',
95+
'Programming Language :: Python :: 3.6',
96+
'Topic :: Scientific/Engineering',
97+
'Topic :: Scientific/Engineering :: Bio-Informatics',
98+
'Topic :: Scientific/Engineering :: Astronomy',
99+
'Topic :: Scientific/Engineering :: Atmospheric Science',
100+
'Topic :: Scientific/Engineering :: Information Analysis',
101+
'Topic :: Scientific/Engineering :: Medical Science Apps.',
102+
'Topic :: System :: Distributed Computing',
103+
'Topic :: Utilities',
80104
]
81105
)

0 commit comments

Comments
 (0)