Skip to content

Commit e185f0b

Browse files
committed
add install_requires
1 parent 88f6c57 commit e185f0b

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

setup.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
#!/usr/bin/env python
2-
3-
from distutils.core import setup
1+
try:
2+
from setuptools import setup
3+
except ImportError:
4+
from distutils.core import setup
45

56
CLASSIFIERS=[
67
'Development Status :: 4 - Beta',
@@ -27,5 +28,9 @@
2728
url='https://github.com/michiya/django-pyodbc-azure',
2829
license='BSD',
2930
packages=['sql_server', 'sql_server.pyodbc', 'sql_server.extra'],
31+
install_requires=[
32+
'Django>=1.2,<1.6',
33+
'pyodbc>=2.1',
34+
],
3035
classifiers=CLASSIFIERS,
3136
)

0 commit comments

Comments
 (0)