From f7bf245f545002928c42128e05884d26753c3df1 Mon Sep 17 00:00:00 2001 From: Abhilash Raj Date: Sat, 5 Aug 2017 20:40:06 -0700 Subject: [PATCH] Add manifest and get version --- MANIFEST.in | 5 +++++ setup.py | 16 ++++++++-------- 2 files changed, 13 insertions(+), 8 deletions(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..0967045 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,5 @@ +include *.py +include README.md LICENSE MANIFEST.in +global-include *.cfg +global-exclude *.egg-info +prune *.egg-info diff --git a/setup.py b/setup.py index 32e5df0..c23baaf 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ def read(fname): setup( name="papergit", - version="0.1", + version="0.1.3", author="Abhilash Raj", author_email="raj.abhilash1@gmail.com", description="Sync between Dropbox Paper and any git repo.", @@ -29,17 +29,17 @@ def read(fname): entry_points={ 'console_scripts': [ "paper-git = papergit.bin.paper_git:main", - ], - }, + ], + }, classifiers=[ - "Development Status :: Alpha", + "Development Status :: 3 - Alpha", "Topic :: Utilities", - "License :: MIT", + "License :: OSI Approved :: MIT License", 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', - ], + ], install_requires=[ 'ipython', 'dropbox', @@ -49,5 +49,5 @@ def read(fname): 'lazr.config', 'peewee', 'GitPython' - ] - ) + ] +)