-
Notifications
You must be signed in to change notification settings - Fork 348
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix pypi push by specifying a long_description (#1051)
* Fix pypi push by specifying a long_description * Verison bump to rerelease
- Loading branch information
Alex Chantavy
authored
Dec 17, 2022
1 parent
36c6ed3
commit 225e01f
Showing
1 changed file
with
3 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
from setuptools import find_packages | ||
from setuptools import setup | ||
|
||
__version__ = '0.68.0' | ||
__version__ = '0.68.1' | ||
|
||
|
||
setup( | ||
name='cartography', | ||
version=__version__, | ||
description='Explore assets and their relationships across your technical infrastructure.', | ||
long_description='file: README.md', | ||
long_description_content_type='text/markdown', | ||
url='https://www.github.com/lyft/cartography', | ||
maintainer='Lyft', | ||
maintainer_email='[email protected]', | ||
|
@@ -75,7 +77,6 @@ | |
'Natural Language :: English', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.8', | ||
'Topic :: Security', | ||
'Topic :: Software Development :: Libraries', | ||
|