Skip to content

Commit 2dfc0ea

Browse files
committed
PyPI Description and Windows support metadata
1 parent fb98ce6 commit 2dfc0ea

2 files changed

Lines changed: 28 additions & 1 deletion

File tree

PyPi_Description.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# mssql-python
2+
3+
This is a new Python driver for Microsoft SQL Server currently in Alpha phase.
4+
5+
## Alpha Version Release
6+
7+
We are excited to announce the release of the alpha version of our driver. This marks a significant milestone in our development journey. While this version is still in the early stages, it includes the foundational code and initial logic that will drive future enhancements.
8+
9+
### What's Included:
10+
11+
- Basic functionality to get you started.
12+
- Initial implementation of core features.
13+
- Placeholder for future improvements and updates.
14+
15+
For more information, please visit the project link on Github: https://github.com/microsoft/mssql-python
16+
17+
### What's Next:
18+
19+
As we continue to develop and refine the driver, you can expect regular updates that will introduce new features, optimizations, and bug fixes. We encourage you to provide feedback and report any issues you encounter, as this will help us improve the driver for the final release.
20+
21+
### Stay Tuned:
22+
23+
We appreciate your interest and support in this project. Stay tuned for more updates and enhancements as we work towards delivering a robust and fully-featured driver in coming months.
24+
Thank you for being a part of our journey!

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def finalize_options(self):
7878
name='mssql-python',
7979
version='0.1.6',
8080
description='A Python library for interacting with Microsoft SQL Server',
81-
long_description=open('README.md', encoding='utf-8').read(),
81+
long_description=open('PyPI_Description.md', encoding='utf-8').read(),
8282
long_description_content_type='text/markdown',
8383
author='Microsoft Corporation',
8484
author_email='pysqldriver@microsoft.com',
@@ -96,6 +96,9 @@ def finalize_options(self):
9696
include_package_data=True,
9797
# Requires >= Python 3.10
9898
python_requires='>=3.10',
99+
classifiers=[
100+
'Operating System :: Microsoft :: Windows',
101+
],
99102
zip_safe=False,
100103
# Force binary distribution
101104
distclass=BinaryDistribution,

0 commit comments

Comments
 (0)