Skip to content

Commit

Permalink
update to setup.py metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
tjarrettveracode committed Aug 2, 2021
1 parent 287ba29 commit 5b5f09b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
import setuptools
from distutils.core import setup

with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setup(
name = 'veracode_api_py',
packages = ['veracode_api_py'],
version = '0.9.19',
license='MIT',
description = 'Python helper library for working with the Veracode APIs. Handles retries, pagination, and other features of the modern Veracode REST APIs.',
long_description = long_description,
long_description_content_type="text/markdown",
author = 'Tim Jarrett',
author_email = 'tjarrett@veracode.com',
url = 'https://github.com/tjarrettveracode',
Expand All @@ -21,4 +27,5 @@
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
],
python_requires=">3.7"
)

0 comments on commit 5b5f09b

Please sign in to comment.