-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (32 loc) · 1.1 KB
/
setup.py
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
import pathlib
from setuptools import setup
here = pathlib.Path(__file__).parent
readme_path = here / "README.md"
requirements_path = here / "requirements.txt"
with readme_path.open() as f:
README = f.read()
with requirements_path.open() as f:
requirements = [line for line in f.readlines()]
setup(
name='django-db-retry',
version='0.1.2',
description='Adds support for database query retries',
long_description=README,
long_description_content_type='text/markdown',
author='Dmytro Smyk',
author_email='[email protected]',
url='https://github.com/parikls/django-db-retry',
packages=["django_db_retry"],
classifiers=[
"Operating System :: OS Independent",
'Intended Audience :: Developers',
'Programming Language :: Python',
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
install_requires=requirements,
python_requires='>=3.5.3'
)