Skip to content

Commit

Permalink
Merge pull request #49 from hugovk/setuptools
Browse files Browse the repository at this point in the history
Use setuptools instead of distutils to upload metadata to PyPI
  • Loading branch information
foutaise authored Nov 2, 2018
2 parents fb52a2f + 64544f5 commit ec4daa7
Showing 1 changed file with 14 additions and 15 deletions.
29 changes: 14 additions & 15 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,28 +17,27 @@
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

from setuptools import setup

DESCRIPTION = "module for creating simple ASCII tables"

with open("README.md") as f:
LONG_DESCRIPTION = f.read()

import sys

from distutils.core import setup
setup(
name = "texttable",
version = "1.4.0",
author = "Gerome Fournier",
author_email = "[email protected]",
url = "https://github.com/foutaise/texttable/",
download_url = "https://github.com/foutaise/texttable/archive/v1.4.0.tar.gz",
license = "LGPL",
py_modules = ["texttable"],
description = DESCRIPTION,
long_description = LONG_DESCRIPTION,
name="texttable",
version="1.4.0",
author="Gerome Fournier",
author_email="[email protected]",
url="https://github.com/foutaise/texttable/",
download_url="https://github.com/foutaise/texttable/archive/v1.4.0.tar.gz",
license="LGPL",
py_modules=["texttable"],
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
platforms = "any",
classifiers = [
platforms="any",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
Expand Down

0 comments on commit ec4daa7

Please sign in to comment.