-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
31 lines (29 loc) · 936 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
29
30
31
"""setup.py"""
from pathlib import Path
from setuptools import setup, find_packages
# The text of the README file
README = (Path(__file__).parent / "README.md").read_text()
setup(
name='jsonclasses',
version='3.4.0',
description=('The modern declarative data flow pipeline and data graph '
'framework for the AI empowered generation.'),
long_description=README,
long_description_content_type='text/markdown',
author='Fillmula Inc.',
author_email='[email protected]',
license='MIT',
packages=find_packages(exclude=('tests')),
package_data={'jsonclasses': ['py.typed']},
zip_safe=False,
url='https://github.com/fillmula/jsonclasses',
include_package_data=True,
python_requires='>=3.10',
install_requires=[
'inflection-plus==0.1.0',
'bcrypt>=3.2.0,<4.0.0'
],
classifiers=[
"Programming Language :: Python :: 3.10"
]
)