-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (45 loc) · 1.54 KB
/
setup.py
File metadata and controls
52 lines (45 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Release process setup see:
# https://github.com/pypa/twine
#
# Upgrade twine
# python3 -m pip install --user --upgrade twine
#
# Run this to build the `dist/PACKAGE_NAME-xxx.tar.gz` file
# rm -rf ./dist && python3 setup.py sdist
#
# Check dist/*
# python3 -m twine check dist/*
#
# Run this to build & upload it to `pypi`, type your account name when prompted.
# python3 -m twine upload dist/*
#
# In one command line:
# rm -rf ./dist && python3 setup.py sdist bdist_wheel && python3 -m twine check dist/*
# rm -rf ./dist && python3 setup.py sdist bdist_wheel && python3 -m twine upload dist/*
#
from setuptools import setup, find_packages
# Usage: python setup.py sdist bdist_wheel
links = [] # for repo urls (dependency_links)
DESCRIPTION = "A python based ORM (Object relational mapping) to make flexible queries and saving new items in the database."
VERSION = "1.2.2"
with open("README.md", "r") as fh:
LONG_DESCRIPTION = fh.read()
setup(
name="sql-orm",
version=VERSION,
author="Shubham Dipt",
author_email="shubham.dipt@gmail.com",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
url="https://github.com/shubhamdipt/sql-orm",
license="MIT",
packages=['sql_orm', 'sql_orm.postgresql', 'sql_orm.postgresql.sql'],
platforms=["any"],
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
dependency_links=links,
)