comparison setup.py @ 49:2eca19f50fdb

Created a setup.py file and scripts/m209.
author Brian Neal <bgneal@gmail.com>
date Thu, 04 Jul 2013 15:30:19 -0500
parents
children
comparison
equal deleted inserted replaced
48:1e8affa8fc11 49:2eca19f50fdb
1 #!/usr/bin/env python
2 # Copyright (C) 2013 by Brian Neal.
3 # This file is part of m209, the M-209 simulation.
4 # m209 is released under the MIT License (see LICENSE.txt).
5
6 from distutils.core import setup
7 from os.path import join, dirname
8
9 import m209
10
11 setup(
12 name='m209',
13 version=m209.__version__,
14 author='Brian Neal',
15 author_email='bgneal@gmail.com',
16 url='https://bitbucket.org/bgneal/m209/',
17 license='MIT',
18 description='A historically accurate M-209 simulation library.',
19 long_description=open(join(dirname(__file__), 'README.txt')).read(),
20 packages=['m209', 'm209.tests', 'm209.keylist', 'm209.keylist.tests'],
21 scripts=['scripts/m209'],
22 classifiers = [
23 'Development Status :: 3 - Alpha',
24 'Environment :: Console',
25 'Intended Audience :: End Users/Desktop',
26 'Intended Audience :: Developers',
27 'Intended Audience :: Information Technology',
28 'Intended Audience :: Science/Research',
29 'Intended Audience :: Other Audience',
30 'Intended Audience :: Education',
31 'License :: OSI Approved :: MIT License',
32 'Operating System :: OS Independent',
33 'Natural Language :: English',
34 'Programming Language :: Python',
35 'Programming Language :: Python :: 3',
36 'Topic :: Communications',
37 'Topic :: Security',
38 'Topic :: Security :: Cryptography',
39 'Topic :: Software Development :: Libraries',
40 'Topic :: Software Development :: Libraries :: Python Modules',
41 'Topic :: Utilities',
42 ],
43 )