Skip to content

Commit

Permalink
Adding flask extension setup
Browse files Browse the repository at this point in the history
  • Loading branch information
bl4ckst0ne committed Nov 20, 2020
1 parent c1812a9 commit 996e05e
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
1 change: 1 addition & 0 deletions flask_pynamodb/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "0.0.1"
38 changes: 38 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import os
import re
from setuptools import setup


description = "Flask-PynamoDB is an extensio for integrating with PynamoDB"

with open("flask_pynamodb/__init__.py") as init_file:
version = re.search(r'__version__ = "(.*?)"', init_file.read()).group(1)

with open("README.md") as readme_file:
long_description = readme_file.read()

setup(
name="Flask-PynamoDB",
version=version,
url="https://github.com/bl4ckst0ne/flask-pynamodb",
license="MIT",
author="bl4ckst0ne",
author_email="[email protected]",
description=description,
long_description=long_description,
packages=["flask_pynamodb"],
zip_safe=False,
include_package_data=True,
platforms="any",
install_requires=["Flask>=1.1.2", "pynamodb>=4.3.3"],
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)

0 comments on commit 996e05e

Please sign in to comment.