Skip to content

Commit

Permalink
PyPI release
Browse files Browse the repository at this point in the history
  • Loading branch information
leeclemnet committed Apr 27, 2016
1 parent 38a97f2 commit 98184dd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 17 deletions.
File renamed without changes.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
19 changes: 2 additions & 17 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,28 +1,13 @@
from setuptools import setup

with open('README.md') as f:
readme = f.read()

with open('LICENSE.md') as f:
license = f.read()

try:
from pypandoc import convert
readme = convert(readme, 'rst', format='md')
license = convert(license, 'rst', format='md')
except ImportError:
print("Warning: pypandoc module not found, could not convert Markdown to RST")

setup(
name='pykitti',
version='0.1.0',
version='0.1.1',
description='A minimal set of tools for working with the KITTI dataset in Python',
long_description=readme,
author='Lee Clement',
author_email='[email protected]',
url='https://github.com/utiasSTARS/pykitti',
download_url='https://github.com/utiasSTARS/pykitti/tarball/0.1.0',
license=license,
download_url='https://github.com/utiasSTARS/pykitti/tarball/0.1.1',
packages=['pykitti'],
install_requires=['numpy', 'matplotlib']
)

0 comments on commit 98184dd

Please sign in to comment.