Skip to content

Commit

Permalink
Prep for 0.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
pri22296 committed Jan 15, 2017
1 parent 2d9f657 commit e0957bc
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
# The short X.Y version.
version = '0.1'
# The full version, including alpha/beta/rc tags.
release = '0.1'
release = '0.1.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
19 changes: 17 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,24 @@
from setuptools import setup

setup(name='beautifultable',
version='0.1',
version='0.1.0',
description='Utility package to print visually appealing ASCII tables to terminal',
author='Priyam Singh',
author_email='priyamsingh.22296@gmail.com',
packages=['beautifultable'],
zip_safe=False)
url='https://github.com/pri22296/beautifultable',
keywords='table terminal ascii',
license='MIT',
install_requires=[
'enum34;python_version<"3.4"',
]
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Topic :: Printing',
'Topic :: Text Processing',
])

0 comments on commit e0957bc

Please sign in to comment.