-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
My setup.py was completely broken and wrong because the requirements.txt file was never included in the PyPI package. This meant that it was really only possible to install the package by cloning the repo and running setup.py from here, where requirements.txt would be available. Should be fixed now.
- Loading branch information
Showing
3 changed files
with
10 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
include *.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,13 +13,14 @@ def get_requirements(): | |
|
||
setup( | ||
name='ebenv', | ||
version='0.2.1', | ||
version='0.2.6', | ||
description='AWS Elastic Beanstalk environment dumper/extractor.', | ||
url='https://github.com/steinnes/ebenv', | ||
author='Steinn Eldjarn Sigurdarson', | ||
author_email='[email protected]', | ||
keywords=['aws', 'elasticbeanstalk', 'environment'], | ||
install_requires=get_requirements(), | ||
packages=['ebenv'], | ||
entry_points=''' | ||
[console_scripts] | ||
ebenv=ebenv:cli | ||
|