Skip to content

Commit

Permalink
Updated setup script.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffrimko committed Aug 14, 2018
1 parent 2cff59d commit a58f9d6
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions app/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,6 @@
from setuptools import setup, find_packages
from platform import system

##==============================================================#
## SECTION: Global Definitions #
##==============================================================#

SCRIPTS = []
if "Windows" == system():
SCRIPTS = ["poppage.bat", "poppage.py"]
if "Linux" == system():
SCRIPTS = ["poppage"]

##==============================================================#
## SECTION: Main Body #
##==============================================================#
Expand All @@ -30,7 +20,7 @@
keywords = "project-templates file-templates file-generation",
url = "https://github.com/jeffrimko/PopPage",
py_modules=["poppage","gitr","utilconf"],
scripts=SCRIPTS,
scripts=["poppage.bat", "poppage.py", "poppage"],
long_description=open("README.rst").read() if isfile("README.rst") else "",
classifiers=[
"Development Status :: 4 - Beta",
Expand Down

0 comments on commit a58f9d6

Please sign in to comment.