-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 950 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 950 Bytes
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='record-oc',
version='1.0.0',
description='Provides abstract classes meant to represent record data as Define Node types',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://ouroboroscoding.com/record',
project_urls={
'Documentation': 'https://ouroboroscoding.com/record',
'Source': 'https://github.com/ouroboroscoding/record-python',
'Tracker': 'https://github.com/ouroboroscoding/record-python/issues'
},
keywords=['data','define','database','db','sql','nosql'],
author='Chris Nasr - Ouroboros Coding Inc.',
author_email='chris@ouroboroscoding.com',
license='MIT',
packages=['record'],
python_requires='>=3.10',
install_requires=[
"define-oc>=1.0.0,<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
)