-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 786 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
import pathlib
from setuptools import setup, find_packages
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name='code-simplify',
version='1.2.4',
description='A python tool library that covers a wide range of common tools to simplify your work and reduce '
'repetitive code.',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Yaocool/code-simplify",
keywords="python, http utils, logger utils",
author='Ozzy',
author_email='ozzycharon@gmail.com',
license='MIT',
install_requires=['aiohttp', 'pydantic', 'SQLAlchemy'],
packages=find_packages(exclude=['examples']),
)