Skip to content

Commit

Permalink
added setup.py and other package parts
Browse files Browse the repository at this point in the history
  • Loading branch information
cmurtaugh committed Apr 4, 2019
1 parent a44cd4f commit 46b2dd6
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 0 deletions.
1 change: 1 addition & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
TBD; this module is really only useful within Harvard.
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
include LICENSE
include README.md
38 changes: 38 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import os
from setuptools import find_packages, setup

with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
README = readme.read()

# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))

setup(
name='django-ssm-parameter-store',
version='0.1',
packages=find_packages(),
include_package_data=True,
license='BSD License', # example license
description='A simple python module to load secure settings from AWS SSM Parameter Store.',
long_description=README,
url='https://huit.harvard.edu/',
author='HUIT Academic Technology',
author_email='[email protected]',
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: X.Y', # replace "X.Y" as appropriate
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License', # example license
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
install_requires=[
"boto3>=1.9.91",
"PyYAML>=3.13",
],
)

0 comments on commit 46b2dd6

Please sign in to comment.