Created
September 23, 2020 16:35
-
-
Save toxinu/9af5e8a6d99c2134ddbb5a3c73c422a2 to your computer and use it in GitHub Desktop.
blog/pip-installable-django-project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [...] | |
| entry_points={ | |
| 'console_scripts': [ | |
| 'my-awesome-project = my_awesome_project.runner:main'] | |
| }, | |
| extras_require={ | |
| 'dev': [ | |
| 'bumpversion==0.5.3', | |
| 'docker-compose==1.9.0' | |
| ], | |
| 'tests': [ | |
| 'pytest==3.0.5', | |
| 'flake8==3.2.1', | |
| 'libfaketime==0.4.2', | |
| 'factory-boy==2.7.0', | |
| 'fake-factory==0.7.2' | |
| ], | |
| }, | |
| [...] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment