Skip to content

Commit

Permalink
Setup on PyPi
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Leeb-du Toit committed Jun 25, 2015
1 parent 44b1490 commit 8cff49b
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
5 changes: 5 additions & 0 deletions creditcard/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
__title__ = 'creditcard'
__version__ = '0.2.0'
__author__ = 'Josh Leeb-du Toit'
__license__ = 'MIT'
__copyright__ = 'Copyright 2015 Josh Leeb-du Toit'
21 changes: 21 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import os
from setuptools import setup


short_description = 'Module to validate, generate and determine the format of credit card numbers.'

setup(
name='CreditCard',
version='1.0.0',
author='Josh Leeb-du Toit',
author_email='[email protected]',
description=short_description,
license='MIT',
keywords='credit card generate validate numbers',
url='https://github.com/joshleeb/creditcard',
packages=['creditcard', 'tests'],
classifiers=[
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
],
)

0 comments on commit 8cff49b

Please sign in to comment.