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

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Scott Kitterman
  • Date: 2018-02-26 16:47:12 UTC
  • Revision ID: scott@kitterman.com-20180226164712-t7vptyv8cwkjupvg
Changed from distutils to setuptools because it's the future

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
#  See the License for the specific language governing permissions and
14
14
#  limitations under the License.
15
15
 
16
 
from distutils.core import setup
 
16
from setuptools import setup
17
17
 
18
18
setup(name='authres',
19
 
      version='1.0.2',
20
 
      description='authres - Authentication Results Header Module',
21
 
      author='Julian Mehnle, Scott Kitterman',
22
 
      author_email='julian@mehnle.net',
23
 
      url='https://launchpad.net/authentication-results-python',
24
 
      license='Apache 2.0',
25
 
      packages = ['authres',],
26
 
      package_data = {'authres': ['tests']},
27
 
      keywords = ['dkim', 'spf', 'dmarc', 'email', 'authentication', 'rfc5451', 'rfc7001', 'rfc7601'],
28
 
      classifiers = [
 
19
    version='1.1.0',
 
20
    description='authres - Authentication Results Header Module',
 
21
    author='Julian Mehnle, Scott Kitterman',
 
22
    author_email='julian@mehnle.net',
 
23
    url='https://launchpad.net/authentication-results-python',
 
24
    license='Apache 2.0',
 
25
    packages = ['authres',],
 
26
    include_package_data=True,
 
27
    package_data = {'authres': ['tests']},
 
28
    keywords = ['dkim', 'spf', 'dmarc', 'email', 'authentication', 'rfc5451', 'rfc7001', 'rfc7601'],
 
29
    classifiers = [
29
30
        'Development Status :: 5 - Production/Stable',
30
31
        'Environment :: No Input/Output (Daemon)',
31
32
        'Intended Audience :: Developers',
37
38
        'Topic :: Communications :: Email :: Mail Transport Agents',
38
39
        'Topic :: Communications :: Email :: Filters',
39
40
        'Topic :: Software Development :: Libraries :: Python Modules',
40
 
      ],
 
41
    ],
 
42
    zip_safe = False,
41
43
)