|
2 | 2 |
|
3 | 3 | import os |
4 | 4 | from os.path import abspath, dirname, join |
5 | | - |
6 | 5 | from setuptools import setup |
7 | 6 |
|
8 | 7 | try: # for pip >= 10 |
|
11 | 10 | from pip.req import parse_requirements |
12 | 11 |
|
13 | 12 | install_reqs = parse_requirements(os.path.join(os.path.dirname(os.path.abspath(__file__)), |
14 | | - 'requirements.txt'), session=None) |
| 13 | + 'requirements.txt'), session='None') |
15 | 14 |
|
16 | 15 | here = abspath(dirname(__file__)) |
17 | 16 |
|
|
22 | 21 | name='connectsdk', |
23 | 22 | author='Ingram Micro', |
24 | 23 | version=VERSION, |
| 24 | + keywords='sdk connectsdk connect automation', |
25 | 25 | packages=['connectsdk'], |
26 | 26 | description='Connect Python SDK', |
27 | | - long_description=open('README.md').read(), |
| 27 | + long_description='Documentation is described on ' |
| 28 | + '`GitHub <https://github.com/ingrammicro/connect-python-sdk>`_', |
28 | 29 | url='https://github.com/ingrammicro/connect-python-sdk', |
29 | 30 | license='Apache Software License', |
30 | 31 | include_package_data=True, |
|
42 | 43 | 'Programming Language :: Python :: 2.7', |
43 | 44 | 'Programming Language :: Python :: 3.5', |
44 | 45 | 'Programming Language :: Python :: 3.6', |
45 | | - 'Programming Language :: Python :: 3.7', |
46 | 46 |
|
47 | 47 | 'Operating System :: OS Independent', |
48 | 48 | 'Operating System :: POSIX', |
|
0 commit comments