-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 755 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from distutils.core import setup
setup(name='streetaddress',
version='0.1.0',
description='A Python port of the Perl address parser.',
author='Mike Jensen',
url='https://github.com/jjensenmike/python-streetaddress',
keywords='streetaddress',
packages=['streetaddress'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 3',
'Topic :: Security',
],
)