forked from michiya/django-pyodbc-azure
-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathsetup.py
33 lines (31 loc) · 1 KB
/
setup.py
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
from setuptools import find_packages, setup
CLASSIFIERS = [
'License :: OSI Approved :: BSD License',
'Framework :: Django',
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
]
setup(
name='django-mssql-backend',
version='2.8.1',
description='Django backend for Microsoft SQL Server',
long_description=open('README.rst').read(),
author='ES Solutions AB',
author_email='[email protected]',
url='https://github.com/ESSolutions/django-mssql-backend',
license='BSD',
packages=find_packages(),
install_requires=[
'pyodbc>=3.0',
],
package_data={'sql_server.pyodbc': ['regex_clr.dll']},
classifiers=CLASSIFIERS,
keywords='django',
)