Skip to content

Commit

Permalink
Add version.py
Browse files Browse the repository at this point in the history
  • Loading branch information
leondgarse committed Aug 20, 2021
1 parent 9852358 commit fac0230
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 9 deletions.
1 change: 1 addition & 0 deletions keras_efficientnet_v2/version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = '1.0.1'
49 changes: 40 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,49 @@
from setuptools import find_packages
from setuptools import setup
""" Setup
"""
from setuptools import setup, find_packages
from codecs import open
from os import path

here = path.abspath(path.dirname(__file__))

# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

exec(open('keras_efficientnet_v2/version.py').read())
setup(
name="keras-efficientnet-v2",
version="1.0.0",
version=__version__,
description="(Unofficial) keras efficientnet v2",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/leondgarse/keras_efficientnet_v2",
author="Leondgarse",
author_email="leondgarse@google.com",
url="https://github.com/leondgarse/keras_efficientnet_v2",
description="keras efficientnet v2",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
install_requires=[
"tensorflow",
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],

# Note that this is a string of words separated by whitespace, not a list.
keywords='tensorflow keras efficientnet v2 pretrained models',
packages=find_packages(),
include_package_data=True,
install_requires=["tensorflow"],
python_requires='>=3.6',
license="Apache 2.0",
)

0 comments on commit fac0230

Please sign in to comment.