-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
40 lines (38 loc) · 1.4 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
37
38
39
40
from setuptools import setup
# get __version__ and readme
exec( open('distbuilder/_version.py').read() )
with open( "README.md", "r" ) as f: readme = f.read()
setup (
name = "distbuilder",
version = __version__, # @UndefinedVariable
author = "BuvinJ",
author_email = "[email protected]",
description = "Wrapper for other libraries and tools including PyInstaller, " +
"the Qt Installer Framework, Opy (a code obfuscater), PIP, and more.",
long_description = readme,
long_description_content_type = "text/markdown",
keywords=[
'distbuilder', 'dist',
'distribution', 'install', 'package',
'distutils', 'setuptools'
],
url = "https://github.com/BuvinJT/distbuilder",
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
'Natural Language :: English',
"Development Status :: 3 - Alpha"
],
packages = ["distbuilder"],
install_requires = [
"six" # Forced as a prerequisite too
, "PyInstaller"
, "opy_distbuilder"
, "argparse"
],
include_package_data=True, # extra files defined in MANIFEST.in
)