-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (40 loc) · 1.45 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
39
40
41
42
43
44
45
import pydantic_pony
from setuptools import find_packages, setup
def read(f):
return open(f, 'r', encoding='utf-8').read()
# https://pip.pypa.io/en/latest/user_guide/#fixing-conflicting-dependencies
INSTALL_REQUIREMENTS = read('requirements.txt').splitlines()
setup(
name='pydantic-pony',
version=pydantic_pony.__version__,
description='Tools to generate Pydantic models from Pony ORM models.',
long_description=read('README.md'),
long_description_content_type='text/markdown',
url='https://github.com/bali-framework/pydantic-pony',
author='Josh.Yu',
author_email='[email protected]',
license='MIT',
install_requires=INSTALL_REQUIREMENTS,
classifiers=[
'Intended Audience :: Developers',
'Development Status :: 5 - Production/Stable',
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Environment :: Web Environment",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
packages=find_packages(
exclude=[
'tests',
'tests.*',
]
),
include_package_data=True,
zip_safe=False,
)