-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (48 loc) · 1.59 KB
/
Copy pathsetup.py
File metadata and controls
55 lines (48 loc) · 1.59 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
53
54
55
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
version = "1.1.0"
install_requires = []
tests_require = ["pytest==6.2.2", "pytest-runner"]
dev_require = ["black==19.3b0"]
extras_require = {
"postgres": ["psycopg2==2.8.6"],
"mysql": [],
"dev": dev_require,
"testing": tests_require,
}
setup(
# python_requires=">=3",
name="dbrows",
version=version,
description="A better interface for SQL databases.",
long_description="",
author="Szymon Lipiński",
author_email="mabewlun@gmail.com",
url="https://github.com/szymonlipinski/dbrows",
packages=find_packages(),
license="MIT",
install_requires=install_requires,
extras_require=extras_require,
setup_requires=["pytest-runner"],
test_suite='pytest',
tests_require=tests_require,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python::3",
"Programming Language :: Python::3::Only",
"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",
"Topic :: Database",
"Topic :: Database :: Front-Ends",
"Topic :: Software Development :: Libraries",
],
)