Skip to content

Commit

Permalink
Merge a2af874 into 78a7f82
Browse files Browse the repository at this point in the history
  • Loading branch information
rohanpm committed Feb 18, 2019
2 parents 78a7f82 + a2af874 commit db74ba2
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 16 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
- n/a
### Fixed
- Added missing files (changelog, license) to PyPI distribution

## 1.0.0 - 2019-02-07
### Added
Expand Down
4 changes: 4 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
include README.md
include CHANGELOG.md
include LICENSE
include requirements.txt
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,7 @@ print("Purge completed:", result)
License
-------

GPLv3
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
5 changes: 5 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
edgegrid-python
monotonic
more-executors
requests
six
16 changes: 2 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,7 @@ def get_description():


def get_long_description():
try:
text = open('README.md').read()
except IOError as error:
if error.errno == 2:
# fallback for older setuptools
return get_description()
raise
text = open('README.md').read()

# Long description is everything after README's initial heading
idx = text.find('\n\n')
Expand Down Expand Up @@ -40,11 +34,5 @@ def get_long_description():
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[
'requests',
'more-executors',
'six',
'monotonic',
'edgegrid-python',
],
install_requires=open('requirements.txt').readlines(),
)

0 comments on commit db74ba2

Please sign in to comment.