-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
36 lines (31 loc) · 1.17 KB
/
setup.py
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.6a0.dev0',
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 = '[email protected]',
url = 'http://bdist-nsi.sourceforge.net/',
license = 'BSD',
platforms = ["any"],
classifiers = [_f for _f in classifiers.split("\n") if _f],
long_description = long_description
)