Skip to content

Update setup config to upload to PiPy #31

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Oct 26, 2017
Merged
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: 2 additions & 0 deletions lambda_cron/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = '0.2.0'

__all__ = ["cli", "aws"]
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
#!/usr/bin/env python

import lambda_cron
try:
from setuptools import setup
except ImportError:
from distutils.core import setup

version = lambda_cron.__version__

setup(
name='lambda-cron',
version='0.2.0',
version=version,
author='MediaMath',
author_email='jbravo@mediamath.com',
description='Serverless cron tool to run on AWS',
keywords='cron lambda aws serverless mediamath',
url='https://github.com/mediaMath/lambda-cron',
download_url='https://github.com/mediamath/lambda-cron/archive/v{0}.tar.gz'.format(version),
packages=[
'lambda_cron', 'lambda_cron.aws', 'lambda_cron.aws.lib', 'lambda_cron.cli', 'lambda_cron.cli.command'
],
Expand Down Expand Up @@ -42,6 +46,5 @@
'Natural Language :: English',
'Operating System :: Unix',
'Operating System :: MacOS',

]
)
)