~ar-python-hackers/authentication-results-python/trunk

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Scott Kitterman
  • Date: 2011-08-10 20:57:12 UTC
  • Revision ID: scott@kitterman.com-20110810205712-wj9onxv4q5m5pjjv
* Add support files from 0.1 and update for 0.2: setup.py, COPYING, MANIFEST.in, README.
* Add changelog (CHANGES) and add to MANIFEST.in.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: ISO-8859-1
 
2
#  Copyright © 2011 Scott Kitterman <scott@kitterman.com>
 
3
 
 
4
#  Licensed under the Apache License, Version 2.0 (the "License");
 
5
#  you may not use this file except in compliance with the License.
 
6
#  You may obtain a copy of the License at
 
7
 
 
8
#    http://www.apache.org/licenses/LICENSE-2.0
 
9
 
 
10
#  Unless required by applicable law or agreed to in writing, software
 
11
#  distributed under the License is distributed on an "AS IS" BASIS,
 
12
#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
13
#  See the License for the specific language governing permissions and
 
14
#  limitations under the License.
 
15
 
 
16
from distutils.core import setup
 
17
 
 
18
setup(name='authres',
 
19
      version='0.2',
 
20
      description='authres - Authentication Results Header Module',
 
21
      author='Julian Mehnle',
 
22
      author_email='julian@mehnle.net',
 
23
      url='https://launchpad.net/authentication-results-python',
 
24
      license='Apache 2.0',
 
25
      py_modules=['authres',],
 
26
      keywords = ['dkim', 'spf','email','authentication', 'rfc5451',],
 
27
      classifiers = [
 
28
        'Development Status :: 3 - Alpha',
 
29
        'Environment :: No Input/Output (Daemon)',
 
30
        'Intended Audience :: Developers',
 
31
        'License :: OSI Approved :: Apache Software License',
 
32
        'Natural Language :: English',
 
33
        'Operating System :: OS Independent',
 
34
        'Programming Language :: Python',
 
35
        'Topic :: Communications :: Email :: Mail Transport Agents',
 
36
        'Topic :: Communications :: Email :: Filters',
 
37
        'Topic :: Software Development :: Libraries :: Python Modules',
 
38
      ],
 
39
)