-
Notifications
You must be signed in to change notification settings - Fork 191
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #494 from nats-io/pkg-updates
Package metadata fixes
- Loading branch information
Showing
2 changed files
with
15 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,17 @@ | ||
from setuptools import setup | ||
|
||
# Metadata goes in pyproject.toml. | ||
# These are here for GitHub's dependency graph. | ||
# These are here for GitHub's dependency graph and help with setuptools support in some environments. | ||
setup( | ||
name="nats-py", | ||
version='2.4.0', | ||
license='Apache 2 License', | ||
extras_require={ | ||
'nkeys': ['nkeys'], | ||
'aiohttp': ['aiohttp'], | ||
'fast_parse': ['fast-mail-parser'], | ||
} | ||
'fast_parse': ['fast-mail-parser'] | ||
}, | ||
packages=['nats', 'nats.aio', 'nats.protocol', 'nats.js'], | ||
package_data={"nats": ["py.typed"]}, | ||
zip_safe=True | ||
) |