├── .github └── workflows │ └── release.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── goldencopy.py ├── requirements.txt ├── setup.cfg └── setup.py /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dramelac/GoldenCopy/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dramelac/GoldenCopy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dramelac/GoldenCopy/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dramelac/GoldenCopy/HEAD/README.md -------------------------------------------------------------------------------- /goldencopy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dramelac/GoldenCopy/HEAD/goldencopy.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | py2neo>=2021.2.4 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dramelac/GoldenCopy/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dramelac/GoldenCopy/HEAD/setup.py --------------------------------------------------------------------------------