-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 788 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
27
28
import pathlib
from setuptools import setup, find_packages
HERE = pathlib.Path(__file__).parent
setup(
name="dataclasses_ujson",
version="0.0.28",
packages=find_packages(exclude=("tests*","bench_marks.py")),
author="Kislenko Artem ",
author_email="[email protected]",
description="fast converter your json to dataclass",
long_description_content_type="text/markdown",
url="https://github.com/kislenko-artem/dataclasses-ujson",
license="Apache",
install_requires=[
"ujson>=1.35",
"types-ujson>=5.8"
],
python_requires=">=3.10",
extras_require={
"dev": ["pytest"]
},
include_package_data=True,
py_modules=['dataclasses_ujson'],
setup_requires=["pytest-runner"],
tests_require=["pytest"]
)