Skip to content

Commit 6d7b9ae

Browse files
Updated version
1 parent 9e859ab commit 6d7b9ae

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ The main distinguishing factor for this project is that it can retrieve entire s
66
fewer queries than most other packages. The trade off is portability: it uses Postgres' Common Table
77
Expressions (CTE) to achieve this and is therefore not compatible with other databases.
88

9-
NOTE: Not all methods which would benefit from CTEs use them yet.
9+
NOTE: Not all methods which would benefit from CTEs use them yet. **This project is a work in progress. Again, this project is a work in progress.** While functional, it is not yet fully optimized.
1010

11-
NOTE: **This project is a work in progress. Again, this project is a work in progress.** While functional, it is not optimized and not yet stable. Lots of changes are happening weekly. Expect it to stabilize by the end of 2020.
11+
The primary purpose of this package is to *build* and *manipulate* DAGs. If you are looking for graph *analysis* or *visualization*, this is not the right package.
1212

13-
Currently, it provides numerous methods for retrieving nodes, and a few for retrieving edges within the graph. In progress are filters within the in order to limit the area of the graph to be searched, ability to easily export to NetworkX, and other improvements and utilities.
13+
Currently, django-postgresql-dag provides numerous methods for retrieving nodes, and a few for retrieving edges within the graph. In-progress are filters within the CTEs in order to limit the area of the graph to be searched, ability to easily export to NetworkX, and other improvements and utilities.
1414

1515
## Demo
1616

@@ -27,8 +27,7 @@ With optional dependencies for using transformations:
2727

2828
## ToDo
2929

30-
- Describe methods of filtering nodes and edges within the CTE.
31-
- Finish creating proper docs.
30+
See the checklists in [issues](https://github.com/OmenApps/django-postgresql-dag/issues) to understand the future goals of this project.
3231

3332

3433
## Credits:

setup.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import os
44
from setuptools import setup
55

6-
version = '0.1.9'
6+
version = '0.2.0'
77

88
classifiers = [
99
"Development Status :: 3 - Alpha",
@@ -20,8 +20,6 @@
2020
"Topic :: Utilities",
2121
"Environment :: Web Environment",
2222
"Framework :: Django",
23-
"Framework :: Django :: 2.0",
24-
"Framework :: Django :: 2.1",
2523
"Framework :: Django :: 2.2",
2624
"Framework :: Django :: 3.0",
2725
"Framework :: Django :: 3.1",
@@ -36,6 +34,11 @@
3634
name='django-postgresql-dag',
3735
version=version,
3836
url='https://github.com/OmenApps/django-postgresql-dag',
37+
project_urls={
38+
'Documentation': 'https://django-postgresql-dag.readthedocs.io/en/latest/',
39+
'Source': 'https://github.com/OmenApps/django-postgresql-dag',
40+
'Tracker': 'https://github.com/OmenApps/django-postgresql-dag/issues',
41+
},
3942
author='Jack Linke, et al.',
4043
author_email='jacklinke@gmail.com',
4144
license='Apache Software License',

0 commit comments

Comments
 (0)