@@ -23,6 +23,7 @@ def get_file(filename):
23
23
with open (filename , 'r' ) as f :
24
24
return f .read ()
25
25
26
+
26
27
setup (
27
28
name = 'sasctl' ,
28
29
description = 'SAS Viya REST Client' ,
@@ -31,8 +32,14 @@ def get_file(filename):
31
32
version = read_dunder ('version' ),
32
33
author = read_dunder ('author' ),
33
34
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
+ },
34
40
packages = find_packages (where = "src" ),
35
41
package_dir = {"" : "src" },
42
+ python_requires = '>=2.7' ,
36
43
install_requires = [
37
44
'requests' ,
38
45
'six >= 1.11'
@@ -46,5 +53,22 @@ def get_file(filename):
46
53
'winkerberos ; platform_system == "Windows"' ],
47
54
},
48
55
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
+ ]
50
74
)
0 commit comments