Skip to content

Commit 255a5c7

Browse files
Merge pull request #4 from DEKHTIARJonathan/patch-1
Setup.py updated to declare compatibility with Python 3
2 parents d7e3c59 + dda34ae commit 255a5c7

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

setup.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,16 @@ def main():
3434
'Operating System :: Microsoft :: Windows',
3535
'Operating System :: MacOS :: MacOS X',
3636
'Topic :: Software Development :: Libraries',
37-
'Programming Language :: Python'],
37+
# Specify the Python versions you support here. In particular, ensure
38+
# that you indicate whether you support Python 2, Python 3 or both.
39+
'Programming Language :: Python',
40+
'Programming Language :: Python :: 2',
41+
'Programming Language :: Python :: 2.7',
42+
'Programming Language :: Python :: 3',
43+
'Programming Language :: Python :: 3.4',
44+
'Programming Language :: Python :: 3.5',
45+
'Programming Language :: Python :: 3.6',
46+
],
3847
packages=find_packages('src'),
3948
package_dir={'': 'src'},
4049
)

0 commit comments

Comments
 (0)