Skip to content

Commit

Permalink
added required setup.py file
Browse files Browse the repository at this point in the history
Signed-off-by: Muhammad Umer Farooq <mumerfarooqlablnet01@gmail.com>
  • Loading branch information
lablnet committed Sep 18, 2023
1 parent e026a2c commit 6d7e44e
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"[python]": {
"editor.defaultFormatter": "ms-python.autopep8"
},
"python.formatting.provider": "none"
}
44 changes: 44 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# -*- coding: UTF-8 -*-
from setuptools import setup, find_packages


with open("README.rst", "r") as fh:
long_description = fh.read()


setup(
name="django_ltree",
version="0.5.3",
python_requires=">=2.7",
url="https://github.com/GreenDeploy-io/greendeploy-django-ltree",
author="KimSia Sim",
author_email="kimsia@oppoin.com",
description="Django app to support ltree postgres extension",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
package_dir={'': 'src'},
packages=find_packages(where='src', exclude=("example",)),
extras_require={"develop": ["twine", "tox"]},
install_requires=["django>=1.11", "six"],
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: Django",
"Framework :: Django :: 1.11",
"Framework :: Django :: 2.1",
"Framework :: Django :: 2.2",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
project_urls={
"Source": "https://github.com/GreenDeploy-io/greendeploy-django-ltree",
"Tracker": "https://github.com/GreenDeploy-io/greendeploy-django-ltree/issues",
},
)

0 comments on commit 6d7e44e

Please sign in to comment.