-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 755 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
from pathlib import Path
setup(
name='sqlstrings',
version='0.1.4',
description='Generates SQL query strings in multiple dialects.',
long_description=(Path(__file__).parent / "README.md").read_text(),
long_description_content_type='text/markdown',
keywords='sql strings generate query',
url='https://github.com/alikellaway/sqlstrings',
author='Ali Kellaway',
author_email='ali.kellaway139@gmail.com',
license='MIT',
# package_dir={'':''},
packages=['sqlstrings'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
'Operating System :: OS Independent'
]
)