diff --git a/.travis.yml b/.travis.yml index 3d7ef4a..36e0f4c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,13 @@ python: - "3.4" - "3.5" - "3.6" + - "3.7" + - "3.8" + - "3.9" + - "3.10" + - "3.11" + - "3.12" install: "pip install -r requirements.txt" script: pytest --cov=intuitlib tests/ after_success: - - coveralls \ No newline at end of file + - coveralls diff --git a/setup.py b/setup.py index 6ffc152..6493ca8 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ from setuptools import find_packages version = {} -with open("./intuitlib/version.py") as fp: +with open('./intuitlib/version.py') as fp: exec(fp.read(), version) setup( @@ -38,5 +38,19 @@ 'enum-compat', ], license='Apache 2.0', - keywords='intuit quickbooks oauth auth openid client' + keywords='intuit quickbooks oauth auth openid client', + classifiers=[ + 'Topic :: Software Development :: Libraries', + 'Topic :: Software Development :: Libraries :: Python Modules', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', + ] )