Skip to content

Commit

Permalink
Switch to setuptools
Browse files Browse the repository at this point in the history
removes warnings
UserWarning: Unknown distribution option: 'install_requires'
UserWarning: Unknown distribution option: 'long_description_content_type'

setuptools seems to be the recommended way now.
  • Loading branch information
piotr1212 committed Jan 7, 2019
1 parent ad48a5b commit cbd6584
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import os
from glob import glob
from distutils.core import setup
from setuptools import setup


def read(fname):
Expand Down Expand Up @@ -34,4 +34,5 @@ def read(fname):
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
zip_safe=False
)

0 comments on commit cbd6584

Please sign in to comment.