Skip to content

Commit

Permalink
update contributing guide setup.py example. Now uses extra_require
Browse files Browse the repository at this point in the history
  • Loading branch information
Austin Raney committed Jun 9, 2021
1 parent acfce9f commit e3b24bf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,9 @@ DESCRIPTION = "{{ SHORT_DESCRIPTION }}"
# Package dependency requirements
REQUIREMENTS = []

# Development requirements
DEVELOPMENT_REQUIREMENTS = ["pytest"]

setup(
name=SUBPACKAGE_SLUG,
version=VERSION,
Expand All @@ -157,6 +160,7 @@ setup(
include=[f"{NAMESPACE_PACKAGE_NAME}.*"]
),
install_requires=REQUIREMENTS,
extras_require={"develop": DEVELOPMENT_REQUIREMENTS},
)
```

Expand Down

0 comments on commit e3b24bf

Please sign in to comment.