Skip to content

Commit 265fed5

Browse files
committed
initial commit
1 parent 062991e commit 265fed5

File tree

5 files changed

+410
-1
lines changed

5 files changed

+410
-1
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
*.py[cod]
2+
*.swp
3+
*~
4+
venv
25

36
# C extensions
47
*.so

LICENSE

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Copyright (c) 2012 PN
2+
3+
Permission is hereby granted, free of charge, to any person
4+
obtaining a copy of this software and associated documentation
5+
files (the "Software"), to deal in the Software without
6+
restriction, including without limitation the rights to use,
7+
copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
copies of the Software, and to permit persons to whom the
9+
Software is furnished to do so, subject to the following
10+
conditions:
11+
12+
The above copyright notice and this permission notice shall be
13+
included in all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
17+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22+
OTHER DEALINGS IN THE SOFTWARE.

README.md renamed to README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
street-address
2-
==============
2+
==============

setup.py

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# -*- coding: utf-8 -*-
2+
import sys
3+
4+
try:
5+
from setuptools import setup
6+
except ImportError:
7+
from distutils.core import setup
8+
9+
10+
CLASSIFIERS=[
11+
'Development Status :: 4 - Beta',
12+
'Intended Audience :: Developers',
13+
'License :: OSI Approved :: MIT License',
14+
'Natural Language :: English',
15+
'Operating System :: OS Independent',
16+
'Programming Language :: Python',
17+
'Topic :: Software Development :: Libraries :: Python Modules'
18+
],
19+
20+
setup(
21+
name='street-address',
22+
version='0.1.0',
23+
description='Street address parser and formatter',
24+
long_description = open('README.rst').read(),
25+
author='PN',
26+
author_email='[email protected]',
27+
url='https://github.com/pnpnpn/street-address',
28+
packages=['street-address'],
29+
install_requires=[],
30+
#test_suite='tests',
31+
classifiers=CLASSIFIERS)
32+
33+

0 commit comments

Comments
 (0)