Skip to content

Commit 694a96a

Browse files
committed
README and setup.py fixes
1 parent 7b39fea commit 694a96a

File tree

2 files changed

+7
-10
lines changed

2 files changed

+7
-10
lines changed

README.rst

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ Features
88
--------
99

1010
- Supports Django 2.2
11-
- Supports Microsoft SQL Server 2008/2008R2, 2012, 2014, 2016, 2017 and
12-
Azure SQL Database
11+
- Supports Microsoft SQL Server 2008/2008R2, 2012, 2014, 2016, 2017
1312
- Passes most of the tests of the Django test suite
1413
- Compatible with
1514
`Micosoft ODBC Driver for SQL Server <https://docs.microsoft.com/en-us/sql/connect/odbc/microsoft-odbc-driver-for-sql-server>`__,
@@ -56,8 +55,7 @@ in DATABASES control the behavior of the backend:
5655

5756
- HOST
5857

59-
String. SQL Server instance in ``"server\instance"`` (on-premise) or
60-
``"server.database.windows.net"`` (Azure SQL Database) format.
58+
String. SQL Server instance in ``"server\instance"`` format.
6159

6260
- PORT
6361

@@ -66,8 +64,7 @@ in DATABASES control the behavior of the backend:
6664

6765
- USER
6866

69-
String. Database user name in ``"user"`` (on-premise) or
70-
``"user@server"`` (Azure SQL Database) format.
67+
String. Database user name in ``"user"`` format.
7168
If not given then MS Integrated Security will be used.
7269

7370
- PASSWORD

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@
44
from distutils.core import setup
55

66
CLASSIFIERS = [
7-
'Development Status :: 4 - Beta',
87
'License :: OSI Approved :: BSD License',
98
'Framework :: Django',
9+
"Operating System :: POSIX :: Linux",
10+
"Operating System :: Microsoft :: Windows",
1011
'Programming Language :: Python',
1112
'Programming Language :: Python :: 3',
1213
'Programming Language :: Python :: 3.5',
1314
'Programming Language :: Python :: 3.6',
1415
'Programming Language :: Python :: 3.7',
15-
'Topic :: Internet :: WWW/HTTP',
1616
]
1717

1818
setup(
1919
name='django-mssql-backend',
2020
version='2.2.0.0',
21-
description='Django backend for Microsoft SQL Server and Azure SQL Database using pyodbc',
21+
description='Django backend for Microsoft SQL Server',
2222
long_description=open('README.rst').read(),
2323
author='ES Solutions AB',
2424
author_email='[email protected]',
@@ -33,5 +33,5 @@
3333
'tests': ['dj-database-url==0.5.0'],
3434
},
3535
classifiers=CLASSIFIERS,
36-
keywords='azure django',
36+
keywords='django',
3737
)

0 commit comments

Comments
 (0)