Skip to content

Commit 01edb5b

Browse files
author
Pietro Giuffrida
committed
retrieve now accepts also filetype objects
1 parent 3191973 commit 01edb5b

File tree

2 files changed

+278
-272
lines changed

2 files changed

+278
-272
lines changed

setup.py

+28-28
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
1-
from setuptools import setup
2-
3-
with open("README.md", "r") as fh:
4-
long_description = fh.read()
5-
6-
setup(
7-
name="sqlantipathy",
8-
version="0.0.72",
9-
url="https://github.com/pietrogiuffrida/sqlantipathy/",
10-
author="Pietro Giuffrida",
11-
author_email="pietro.giuffri@gmail.com",
12-
license="MIT",
13-
packages=["sqlantipathy"],
14-
zip_safe=False,
15-
classifiers=[
16-
"Programming Language :: Python :: 3",
17-
"License :: OSI Approved :: MIT License",
18-
"Operating System :: OS Independent",
19-
"Development Status :: 3 - Alpha",
20-
],
21-
description="Python library to work with SQL DB",
22-
long_description=long_description,
23-
long_description_content_type="text/markdown",
24-
install_requires=[
25-
"pyodbc",
26-
"numpy"
27-
],
28-
)
1+
from setuptools import setup
2+
3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
6+
setup(
7+
name="sqlantipathy",
8+
version="0.0.73",
9+
url="https://github.com/pietrogiuffrida/sqlantipathy/",
10+
author="Pietro Giuffrida",
11+
author_email="pietro.giuffri@gmail.com",
12+
license="MIT",
13+
packages=["sqlantipathy"],
14+
zip_safe=False,
15+
classifiers=[
16+
"Programming Language :: Python :: 3",
17+
"License :: OSI Approved :: MIT License",
18+
"Operating System :: OS Independent",
19+
"Development Status :: 3 - Alpha",
20+
],
21+
description="Python library to work with SQL DB",
22+
long_description=long_description,
23+
long_description_content_type="text/markdown",
24+
install_requires=[
25+
"pyodbc",
26+
"numpy"
27+
],
28+
)

0 commit comments

Comments
 (0)