|
1 |
| -from distutils.core import setup |
| 1 | +from setuptools import setup |
2 | 2 |
|
3 | 3 |
|
4 | 4 | with open('README.rst') as file:
|
|
13 | 13 | license='GNU General Public License v3 (GPLv3)',
|
14 | 14 | description='A library that provides a Python 3 interface for the Gravatar API.',
|
15 | 15 | long_description=long_description,
|
| 16 | + long_description_content_type='text/x-rst', |
| 17 | + keywords='gravatar', |
16 | 18 | packages=['libgravatar'],
|
17 |
| - provides=['libgravatar (0.2.3)'], |
18 | 19 | classifiers=[
|
19 | 20 | 'Development Status :: 4 - Beta',
|
20 | 21 | 'Intended Audience :: Developers',
|
21 | 22 | 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
|
22 | 23 | 'Operating System :: OS Independent',
|
| 24 | + 'Programming Language :: Python :: 2', |
23 | 25 | 'Programming Language :: Python :: 2.6',
|
24 | 26 | 'Programming Language :: Python :: 2.7',
|
25 | 27 | 'Programming Language :: Python :: 3',
|
| 28 | + 'Programming Language :: Python :: 3.2', |
| 29 | + 'Programming Language :: Python :: 3.5', |
| 30 | + 'Programming Language :: Python :: 3.6', |
26 | 31 | 'Topic :: Software Development :: Libraries',
|
27 | 32 | ],
|
| 33 | + project_urls={ |
| 34 | + 'Bug Reports': 'https://github.com/pabluk/libgravatar/issues', |
| 35 | + 'Source': 'https://github.com/pabluk/libgravatar', |
| 36 | + 'Documentation': 'https://libgravatar.readthedocs.io', |
| 37 | + }, |
28 | 38 | )
|
0 commit comments