Skip to content

Commit b7f4229

Browse files
author
Jon Walker
authored
Merge pull request #9 from jlwalke2/master
Add PyPI Metadata
2 parents 78a9b69 + 79320fe commit b7f4229

File tree

1 file changed

+25
-1
lines changed

1 file changed

+25
-1
lines changed

setup.py

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ def get_file(filename):
2323
with open(filename, 'r') as f:
2424
return f.read()
2525

26+
2627
setup(
2728
name='sasctl',
2829
description='SAS Viya REST Client',
@@ -31,8 +32,14 @@ def get_file(filename):
3132
version=read_dunder('version'),
3233
author=read_dunder('author'),
3334
url='https://github.com/sassoftware/python-sasctl/',
35+
project_urls={
36+
'Bug Tracker': 'https://github.com/sassoftware/python-sasctl/issues',
37+
'Documentation': 'https://sassoftware.github.io/python-sasctl/',
38+
'Source Code': 'https://github.com/sassoftware/python-sasctl'
39+
},
3440
packages=find_packages(where="src"),
3541
package_dir={"": "src"},
42+
python_requires='>=2.7',
3643
install_requires=[
3744
'requests',
3845
'six >= 1.11'
@@ -46,5 +53,22 @@ def get_file(filename):
4653
'winkerberos ; platform_system == "Windows"'],
4754
},
4855
entry_points = {'console_scripts': ['sasctl = sasctl.utils.cli:main']},
49-
python_requires='>=2.7'
56+
classifiers=[
57+
'Development Status :: 5 - Production/Stable',
58+
'License :: OSI Approved :: Apache Software License',
59+
'Environment :: Console',
60+
'Intended Audience :: Science/Research',
61+
'Intended Audience :: Developers',
62+
'Programming Language :: Python',
63+
'Programming Language :: Python :: 2',
64+
'Programming Language :: Python :: 2.7',
65+
'Programming Language :: Python :: 3',
66+
'Programming Language :: Python :: 3.4',
67+
'Programming Language :: Python :: 3.5',
68+
'Programming Language :: Python :: 3.6',
69+
'Programming Language :: Python :: 3.7',
70+
'Topic :: Software Development',
71+
'Topic :: Scientific/Engineering',
72+
'Operating System :: OS Independent'
73+
]
5074
)

0 commit comments

Comments
 (0)