Skip to content

Instantly share code, notes, and snippets.

@toxinu
Created September 23, 2020 16:35
Show Gist options
  • Save toxinu/9af5e8a6d99c2134ddbb5a3c73c422a2 to your computer and use it in GitHub Desktop.
Save toxinu/9af5e8a6d99c2134ddbb5a3c73c422a2 to your computer and use it in GitHub Desktop.
blog/pip-installable-django-project
[...]
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