-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 943 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
32
from setuptools import setup
with open('README.md', 'r') as oF:
long_description=oF.read()
setup(
name='define-oc',
version='1.0.2',
description='A system for defining and validating data regardless of data store',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://ouroboroscoding.com/format-oc',
project_urls={
'Documentation': 'https://ouroboroscoding.com/format-oc',
'Source': 'https://github.com/ouroboroscoding/define-python',
'Tracker': 'https://github.com/ouroboroscoding/define-python/issues'
},
keywords=['data','format','database','db','sql','nosql'],
author='Chris Nasr - Ouroboros Coding Inc.',
author_email='[email protected]',
license='MIT',
packages=['define'],
python_requires='>=3.10',
install_requires=[
"jobject>=1.0.2,<1.1",
"jsonb>=1.0.0,<1.1",
"tools-oc>=1.2.2,<1.3",
"undefined-oc>=1.0.0,<1.1"
],
test_suite='tests',
zip_safe=True
)