This repository has been archived by the owner on May 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 148
/
setup.py
61 lines (53 loc) · 1.77 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env python
# --------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
import io
import os
import platform as _platform
import sys
from setuptools import setup
MSSQLSCRIPTER_VERSION = '1.0.0a23'
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: MIT License',
]
DEPENDENCIES = [
'future>=0.16.0',
'wheel>=0.29.0'
]
if sys.version_info < (3, 4):
DEPENDENCIES.append('enum34>=1.1.6')
setup(
install_requires=DEPENDENCIES,
name='mssql-scripter',
version=MSSQLSCRIPTER_VERSION,
description='Microsoft SQL Scripter Command-Line Tool',
license='MIT',
author='Microsoft Corporation',
author_email='sqlcli@microsoft.com',
url='https://github.com/Microsoft/mssql-scripter/',
zip_safe=True,
long_description=open('README.rst').read(),
classifiers=CLASSIFIERS,
include_package_data=True,
scripts=[
'mssql-scripter',
'mssql-scripter.bat'
],
packages=[
'mssqlscripter',
'mssqlscripter.mssqltoolsservice',
'mssqlscripter.jsonrpc',
'mssqlscripter.jsonrpc.contracts'],
)