Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use setuptools instead of distutils to upload metadata to PyPI #49

Merged
merged 2 commits into from
Nov 2, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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