-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
38 lines (37 loc) · 1.13 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
from setuptools import setup, find_packages
setup(
name='mybatis',
version='0.0.17',
description='A python ORM like mybatis.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown', # 如果你使用的是Markdown格式的README
author='Teng Huang',
author_email='ht201509@163.com',
url='https://github.com/ralgond/mybatis-py',
packages=find_packages(),
install_requires=[
'mysql-connector-python>=9.0.0',
'Pympler>=1.1',
'orjson>=3.10.12',
'psycopg2-binary>=2.9.10'
],
classifiers=[
'Programming Language :: Python :: 3',
# 'License :: OSI Approved :: Apache-2.0 License',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
],
python_requires='>=3.8',
# entry_points={
# 'console_scripts': [
# 'my-cli=my_project.cli:main',
# ],
# },
# include_package_data=True,
# package_data={
# 'my_project': ['data/*.csv'],
# },
license='Apache-2.0',
test_require=['pytest'],
tests_require=['pytest'],
)