Skip to content

Commit

Permalink
Updated setup.py for PyPI release
Browse files Browse the repository at this point in the history
  • Loading branch information
magnuswatn committed Jan 22, 2017
1 parent 3bf3608 commit d29856c
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,21 @@
from distutils.core import setup
try:
from setuptools import setup
except ImportError:
from distutils.core import setup

setup(
name='fodselsnummer',
version='1.0',
description='For generating and validating of Norwegian "birth numbers" (fodselsnummer)',
version='1.1',
license='MIT',
author='Magnus Watn',
url='https://github.com/magnuswatn/fodselsnummer',
py_modules=['fodselsnummer'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
)

0 comments on commit d29856c

Please sign in to comment.