Skip to content

Commit 93496c4

Browse files
committed
Replace disutils for setuptools
1 parent 8750a93 commit 93496c4

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[bdist_wheel]
2+
universal=1

setup.py

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from distutils.core import setup
1+
from setuptools import setup
22

33

44
with open('README.rst') as file:
@@ -13,16 +13,26 @@
1313
license='GNU General Public License v3 (GPLv3)',
1414
description='A library that provides a Python 3 interface for the Gravatar API.',
1515
long_description=long_description,
16+
long_description_content_type='text/x-rst',
17+
keywords='gravatar',
1618
packages=['libgravatar'],
17-
provides=['libgravatar (0.2.3)'],
1819
classifiers=[
1920
'Development Status :: 4 - Beta',
2021
'Intended Audience :: Developers',
2122
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
2223
'Operating System :: OS Independent',
24+
'Programming Language :: Python :: 2',
2325
'Programming Language :: Python :: 2.6',
2426
'Programming Language :: Python :: 2.7',
2527
'Programming Language :: Python :: 3',
28+
'Programming Language :: Python :: 3.2',
29+
'Programming Language :: Python :: 3.5',
30+
'Programming Language :: Python :: 3.6',
2631
'Topic :: Software Development :: Libraries',
2732
],
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+
},
2838
)

0 commit comments

Comments
 (0)