bartongroup / slivka

http://bartongroup.github.io/slivka/
Apache License 2.0
7 stars 3 forks source link

Remove manage.py startup script from project directory. #88

Closed warownia1 closed 3 years ago

warownia1 commented 4 years ago

Having manage.py in the project directory causes issues when the script is loaded from outside the project directory. Additionally, the script does nothing beyond calling slivka.command.manager() which can be set-up as a slivka entry point making manage.py redundant.

warownia1 commented 3 years ago

Issue already resolved. slivka executable is created when Slivka is installed and runs slivka.cli.main entry point. The manage.py script is still present in the project directory, but it's role is reduced to setting SLIVKA_HOME variable and running slivka.cli.main() only.