-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (23 loc) · 880 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
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
with open('README.md') as f:
readme = f.read()
setup(name='sqlalchemyp',
version='0.0.5',
description='SQLAlchemy Print Query',
long_description=readme,
long_description_content_type='text/markdown',
author='Evangilo',
author_email='[email protected]',
url='https://github.com/evangilo/sqlalchemyp',
packages=find_packages(exclude=('tests', 'docs', 'build')),
install_requires=['sqlalchemy', 'sqlparse'],
license=u'MIT',
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
])