Skip to content

Commit

Permalink
Add long description, add req.in to manifest (#248)
Browse files Browse the repository at this point in the history
  • Loading branch information
patricksanders committed Feb 11, 2020
1 parent ab503fb commit 40e2121
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
@@ -1 +1,2 @@
include requirements.txt
include requirements.in
2 changes: 1 addition & 1 deletion repokid/__init__.py
Expand Up @@ -20,7 +20,7 @@

import import_string

__version__ = "0.12.0"
__version__ = "0.12.1"


def init_config():
Expand Down
10 changes: 6 additions & 4 deletions setup.py
Expand Up @@ -13,10 +13,14 @@
# limitations under the License.

import ast
import os.path
import re

from setuptools import find_packages, setup


ROOT = os.path.realpath(os.path.join(os.path.dirname(__file__)))

with open("requirements.in") as f:
REQUIRED = f.read().splitlines()

Expand All @@ -30,10 +34,8 @@
name="repokid",
version=REPOKID_VERSION,
description="AWS Least Privilege for Distributed, High-Velocity Deployment",
# removed as I think getting long_desc to work is perhaps outside the scope
# of this PR, other long_desc's I've seen have used .rst to display on
# Pypi, so I think that may be necessary also.
# long_description=open("readme.md").read(),
long_description=open(os.path.join(ROOT, 'README.md')).read(),
long_description_content_type="text/markdown",
url="https://github.com/Netflix/repokid",
packages=find_packages(),
install_requires=REQUIRED,
Expand Down

0 comments on commit 40e2121

Please sign in to comment.