-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 838 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 838 Bytes
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
from setuptools import setup
with open("README.rst") as f:
long_description = f.read()
setup(
name="sqlite_json",
version="0.0.0",
description="SQLAlchemy plugin that adds SQLite dialect JSON support",
long_description=long_description,
author="Ilja Everilä",
author_email="saarni@gmail.com",
license="MIT",
url="https://github.com/everilae/sqlite_json",
packages=["sqlite_json"],
#setup_requires=[ "pytest-runner" ],
#tests_require=[ "pytest" ],
install_requires=[
"sqlalchemy>=1.1"
],
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
entry_points={
"sqlalchemy.plugins": [
"jsonplugin = sqlite_json:JsonPlugin"
]
}
)