Setup.py for building whl
This commit is contained in:
parent
ecc17b788a
commit
a9d3b0ff7d
5
.gitignore
vendored
5
.gitignore
vendored
@ -1,4 +1,7 @@
|
||||
.idea/
|
||||
.venv/
|
||||
venv/
|
||||
*__pycache__*
|
||||
*__pycache__*
|
||||
*.egg-info
|
||||
build/
|
||||
dist/
|
7
LICENSE
Normal file
7
LICENSE
Normal file
@ -0,0 +1,7 @@
|
||||
Copyright 2021 Price Hiller
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
39
setup.py
39
setup.py
@ -1,12 +1,35 @@
|
||||
# Build with python setup.py bdist_wheel
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
with open("VERSION", "r") as v_f:
|
||||
version = v_f.read()
|
||||
|
||||
with open("README.md", "r") as r_f:
|
||||
long_description = r_f.read()
|
||||
|
||||
setup(
|
||||
name='Async-Postgresql-Wrapper',
|
||||
version='0.8.0',
|
||||
packages=['Database'],
|
||||
url='gitlab.orion-technologies.io/Open-Source/Async-Postgresql-Wrapper',
|
||||
license='MIT',
|
||||
author='pricehiller',
|
||||
author_email='philler3138@gmail.com',
|
||||
description='A simple sqlalchemly database wrapper to simplify asynchronous connections to Postgresql databases with an orm.'
|
||||
name="Async-Postgresql-Wrapper",
|
||||
version=version,
|
||||
packages=["Database"],
|
||||
classifiers=[
|
||||
"Programming Language :: Python :: 3",
|
||||
"Operating System :: OS Independent",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
],
|
||||
python_requires=">=3.9",
|
||||
url="https://gitlab.orion-technologies.io/open-source/async-orm-postgresql-wrapper",
|
||||
license="MIT",
|
||||
license_files=("LICENSE",),
|
||||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
zip_safe=True,
|
||||
include_package_data=True,
|
||||
include_dirs=False,
|
||||
author="Price Hiller",
|
||||
author_email="philler3138@gmail.com",
|
||||
description="A simple sqlalchemy database wrapper to simplify asynchronous connections to Postgresql databases "
|
||||
"with an orm. "
|
||||
)
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user