-
Notifications
You must be signed in to change notification settings - Fork 0
Home
thebleucheese edited this page May 3, 2022
·
1 revision
Welcome to the py-attire-schema wiki!
For use with local venv installation with setup.py projects
Requirements.txt
pydantic~=1.9.0
setup.py
from setuptools import setup
packages = ['py_attire_schema']
package_data = {'': ['*']}
setup_kwargs = {
'name': 'py-attire-schema',
'version': '1.1.0',
'description': '',
'long_description': None,
'author': 'Your Name',
'author_email': '[email protected]',
'maintainer': None,
'maintainer_email': None,
'url': None,
'packages': packages,
'package_data': package_data,
'python_requires': '>=3.6,<4.0',
}
setup(**setup_kwargs)