mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-26 02:30:21 -06:00
95 lines
2.5 KiB
Python
95 lines
2.5 KiB
Python
#########################################################################
|
|
#
|
|
# pgAdmin 4 - PostgreSQL Tools
|
|
#
|
|
# Copyright (C) 2013 - 2017, The pgAdmin Development Team
|
|
# This software is released under the PostgreSQL Licence
|
|
#
|
|
##########################################################################
|
|
|
|
import sys
|
|
import imp
|
|
|
|
from setuptools import setup
|
|
from codecs import open
|
|
|
|
"""This script is used to help generate PIP packages"""
|
|
|
|
# Get the requirements list for the current version of Python
|
|
req_file='../requirements.txt'
|
|
|
|
with open(req_file) as reqf:
|
|
if sys.version_info[0] >= 3:
|
|
required = reqf.read().splitlines()
|
|
else:
|
|
required = reqf.read().decode("utf-8").splitlines()
|
|
|
|
# Remove any requirements with environment specifiers. These
|
|
# must be explicitly listed in extras_require below.
|
|
for req in required:
|
|
if ";" in req:
|
|
required.remove(req)
|
|
|
|
# Get the app version
|
|
modl = imp.load_source('APP_VERSION', '../web/config.py')
|
|
|
|
setup(
|
|
name='pgadmin4',
|
|
|
|
version=modl.APP_VERSION,
|
|
|
|
description='PostgreSQL Tools',
|
|
long_description='Administration and management tools for the PostgreSQL database.',
|
|
|
|
url='https://www.pgadmin.org/',
|
|
|
|
# Author details
|
|
author='The pgAdmin Development Team',
|
|
author_email='pgadmin-hackers@postgresql.org',
|
|
|
|
# Choose your license
|
|
license='PostgreSQL Licence',
|
|
|
|
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
|
|
classifiers=[
|
|
# 3 - Alpha
|
|
# 4 - Beta
|
|
# 5 - Production/Stable
|
|
'Development Status :: 5 - Production/Stable',
|
|
|
|
# Suppported Programming Languages
|
|
'Programming Language :: Python :: 2.6',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3.3',
|
|
'Programming Language :: Python :: 3.4',
|
|
'Programming Language :: Python :: 3.5',
|
|
'Programming Language :: Python :: 3.6'
|
|
],
|
|
|
|
keywords='pgadmin4,postgresql,postgres',
|
|
|
|
# Specify package names here.
|
|
packages=["pgadmin4",],
|
|
|
|
# To inclue dditional files into the package
|
|
include_package_data=True,
|
|
|
|
install_requires=required,
|
|
|
|
extras_require={
|
|
# ...
|
|
":python_version<'2.7'": ["ordereddict"],
|
|
":python_version<='2.7'": ["importlib"],
|
|
},
|
|
|
|
# Specify date files to be included. For Python 2.6 need to include them in MANIFEST.in
|
|
##package_data="",
|
|
|
|
# To package data files outside package directory.
|
|
##data_files=,
|
|
|
|
# 'scripts' keyword is used to provide executable scripts. It provides cross-platform support.
|
|
##entry_points=,
|
|
|
|
)
|