-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (36 loc) · 1.25 KB
/
Copy pathsetup.py
File metadata and controls
38 lines (36 loc) · 1.25 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
from setuptools import setup
import pypandoc
setup(
name='pg_batch',
version='1.1.1',
description='Run large PostgreSQL UPDATE and DELETE queries with small batches to prevent locks',
long_description=pypandoc.convert_file('README.md', 'rst'),
author='Gabriel Bordeaux',
author_email='pypi@gab.lc',
url='https://github.com/gabfl/pg-batch',
license='MIT',
packages=['pg_batch'],
package_dir={'pg_batch': 'src'},
install_requires=[ # external dependencies
'psycopg2-binary==2.9.*'
],
entry_points={
'console_scripts': [
'pg_batch = pg_batch.pg_batch:main',
],
},
classifiers=[ # see https://pypi.python.org/pypi?%3Aaction=list_classifiers
'Topic :: Software Development',
'Topic :: Database',
'Topic :: Database :: Database Engines/Servers',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python',
# 'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
],
)