forked from COUR4G3/peewee-mssql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (37 loc) · 1.21 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
34
35
36
37
38
39
40
41
from setuptools import setup
def long_description():
descr = open('README.rst', 'r').read()
try:
descr += '\n\n' + open('docs/changelog.rst', 'r').read()
except:
pass
return descr
setup(
name='peewee-mssql',
version='0.1.1',
url='https://github.com/cour4g3/peewee-mssql',
license='MIT',
author='Michael de Villiers',
author_email='[email protected]',
description='Database driver to add Microsoft SQL Server/Azure support to Peewee',
long_description=long_description(),
py_modules=['peewee_mssql'],
platforms='any',
install_requires=[
'peewee',
'pymssql',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)