Skip to content

Commit a11fc4c

Browse files
committed
Published new version to pip
1 parent 42a43be commit a11fc4c

File tree

2 files changed

+9
-12
lines changed

2 files changed

+9
-12
lines changed

efficientnet_pytorch/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.1.0"
1+
__version__ = "0.3.0"
22
from .model import EfficientNet
33
from .utils import (
44
GlobalParams,

setup.py

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
1919
AUTHOR = 'Luke'
2020
REQUIRES_PYTHON = '>=3.5.0'
21-
VERSION = '0.2.0'
21+
VERSION = '0.3.0'
2222

2323
# What packages are required for this module to be executed?
2424
REQUIRED = [
@@ -109,16 +109,13 @@ def run(self):
109109
extras_require=EXTRAS,
110110
include_package_data=True,
111111
license='Apache',
112-
# classifiers=[
113-
# # Trove classifiers
114-
# # Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
115-
# 'License :: OSI Approved :: MIT License',
116-
# 'Programming Language :: Python',
117-
# 'Programming Language :: Python :: 3',
118-
# 'Programming Language :: Python :: 3.6',
119-
# 'Programming Language :: Python :: Implementation :: CPython',
120-
# 'Programming Language :: Python :: Implementation :: PyPy'
121-
# ],
112+
classifiers=[
113+
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
114+
'License :: OSI Approved :: Apache Software License',
115+
'Programming Language :: Python',
116+
'Programming Language :: Python :: 3',
117+
'Programming Language :: Python :: 3.6',
118+
],
122119
# $ setup.py publish support.
123120
cmdclass={
124121
'upload': UploadCommand,

0 commit comments

Comments
 (0)