-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (23 loc) · 800 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (23 loc) · 800 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 distutils.core import setup
import setuptools
setup(
name = 'targa',
packages = ['targa', 'targa.errors'],
version = '1.0.5',
license='MIT',
description = 'A lightweight async Python library for MySQL queries and modeling.',
author = 'whdev1',
author_email = 'whdev1@protonmail.com',
url = 'https://github.com/whdev1/targa',
download_url = 'https://github.com/whdev1/targa/archive/refs/tags/v1.0.5.tar.gz',
keywords = ['Targa', 'SQL', 'MySQL', 'async'],
install_requires=['aiomysql'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
],
)