File: setup.py

package info (click to toggle)
bdist-nsi 0.1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 420 kB
  • sloc: python: 1,441; makefile: 6
file content (36 lines) | stat: -rwxr-xr-x 1,190 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python

"""Setup script for bdist_nsi."""

classifiers = """Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 3
Topic :: System :: Software Distribution
Topic :: Software Development :: Code Generators"""

from distutils.core import setup
import os

long_description = open("README.rst").read()

setup(
    name = 'bdist_nsi',
    packages = ['bdist_nsi'],
    package_data = {'': ['*.ico', '*.bmp']}, # include ico and bmp files
    version = '0.1.5',
    description = 'Create NSIS windows installers for Python modules.',
    # note: author of the original http://bdist-nsi.sourceforge.net/ package
    #       (which formed the original basis of bdist_nsi) is j-cg
    author = 'Amorilia',
    author_email = 'amorilia@users.sourceforge.net',
    url = 'http://bdist-nsi.sourceforge.net/',
    license = 'BSD',
    platforms = ["any"],
    classifiers = [_f for _f in classifiers.split("\n") if _f],
    long_description = long_description
)