Skip to content
Closed
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
include README
include README.md
include LICENSE
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you please split this one out into a separate commit?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you please split this one out into a separate commit?

Sure

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@eeshangarg #50 is ready

3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import sys
from setuptools.command.test import test as TestCommand
from setuptools import setup
import clonevirtualenv


if __name__ == '__main__' and sys.version_info < (2, 7):
Expand Down Expand Up @@ -29,7 +30,7 @@ def run_tests(self):


setup(name="virtualenv-clone",
version='0.5.1',
version=clonevirtualenv.__version__,
description='script to clone virtualenvs.',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down