-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
36 lines (30 loc) · 943 Bytes
/
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
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst')) as f:
README = f.read()
requires = [
'pyodbc',
'peewee'
]
version = '0.1.5'
setup(
name='peewee_mssqlserv',
version=version,
py_modules=['peewee_mssqlserv'],
description='MS SQL Server support for the peewee ORM',
long_description=README,
author='Constantin Roganov',
author_email='rccbox@gmail.com',
url='https://github.com/brake/peewee_mssql',
download_url='https://github.com/brake/peewee_mssql/archive/' + version + '.zip',
keywords=['database', 'ORM', 'peewee', 'mssql'],
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: MIT License',
'Topic :: Database',
],
install_requires=requires,
)