Skip to content

Commit

Permalink
python packaging and PyPI submission
Browse files Browse the repository at this point in the history
  • Loading branch information
Ernest W. Durbin III committed May 22, 2013
1 parent e89bf12 commit ec9bde9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ dist
build
*.pyc
vendor
env
MANIFEST
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#!/usr/bin/env python

sdict = dict(
from distutils.core import setup

setup(
name = 'KISSmetrics',
packages = ['KISSmetrics'],
version = '0.1.0',
Expand All @@ -12,10 +14,10 @@
maintainer = 'kissmetrics',
maintainer_email = 'support@kissmetrics.com',
keywords = ['kissmetrics'],
# license = 'MIT',
license = 'Apache Software License',
classifiers=[
'Programming Language :: Python',
# 'License :: OSI Approved :: MIT License',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
Expand All @@ -24,5 +26,3 @@
install_requires = [],
)

from distutils.core import setup
setup(**sdict)

0 comments on commit ec9bde9

Please sign in to comment.