Skip to content

Commit

Permalink
Adjust the setup file for python3 uploads
Browse files Browse the repository at this point in the history
  • Loading branch information
zeroSteiner committed May 18, 2017
1 parent 4a2a9ad commit 8f8bdd6
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion lib/termineter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@

from __future__ import unicode_literals

__version__ = '0.2.7'
__version__ = '0.2.8'
25 changes: 13 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,26 +62,27 @@
long_description=long_description,
url='https://github.com/securestate/termineter',
license='GPLv3',
install_requires=(
install_requires=[
'crcelk>=1.0',
'pyasn1>=0.1.7',
'pyserial>=2.6',
'smoke-zephyr==1.0.2'
),
],
package_dir={'': 'lib'},
packages=find_packages('lib'),
package_data={
(b'' if sys.version_info < (3,) else ''): ['data/*'],
},
classifiers=(
b'Development Status :: 5 - Production/Stable',
b'Environment :: Console',
b'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
b'Operating System :: OS Independent',
b'Programming Language :: Python :: 2.7',
b'Programming Language :: Python :: 3.4',
b'Programming Language :: Python :: 3.5',
b'Topic :: Security'
),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Security'
],
scripts=['termineter']
)

0 comments on commit 8f8bdd6

Please sign in to comment.