Skip to content

Commit

Permalink
Add manifest and get version
Browse files Browse the repository at this point in the history
  • Loading branch information
maxking committed Aug 6, 2017
1 parent 15e4f63 commit f7bf245
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
5 changes: 5 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
include *.py
include README.md LICENSE MANIFEST.in
global-include *.cfg
global-exclude *.egg-info
prune *.egg-info
16 changes: 8 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def read(fname):

setup(
name="papergit",
version="0.1",
version="0.1.3",
author="Abhilash Raj",
author_email="[email protected]",
description="Sync between Dropbox Paper and any git repo.",
Expand All @@ -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',
Expand All @@ -49,5 +49,5 @@ def read(fname):
'lazr.config',
'peewee',
'GitPython'
]
)
]
)

0 comments on commit f7bf245

Please sign in to comment.