From 474e174f13514caa0ec411067e994c6f73083d44 Mon Sep 17 00:00:00 2001 From: Shiba Date: Tue, 23 Mar 2021 17:56:11 +0100 Subject: [PATCH] Revert "renamed elementify.py to __main__.py" This reverts commit 61e8966cdb9867a73a562439811db6dd20062392. --- elementify/{__main__.py => elementify.py} | 0 setup.py | 35 +++++++++++------------ 2 files changed, 17 insertions(+), 18 deletions(-) rename elementify/{__main__.py => elementify.py} (100%) diff --git a/elementify/__main__.py b/elementify/elementify.py similarity index 100% rename from elementify/__main__.py rename to elementify/elementify.py diff --git a/setup.py b/setup.py index fff5db6..f2ee493 100644 --- a/setup.py +++ b/setup.py @@ -1,20 +1,19 @@ +""" +This is a setup.py script generated by py2applet + +Usage: + python setup.py py2app +""" + +from setuptools import setup + +APP = ['elementify/elementify.py'] +DATA_FILES = [] +OPTIONS = {} + setup( - name="elementify", - version="1.1.0", - description="A simple program that gives you information about chemical elements when you search them", - long_description=README, - long_description_content_type="text/markdown", - url="https://github.com/shibaismyname/elementify", - author="shibaismyname", - author_email="robertozunica69@gmail.com", - license="MIT", - classifiers=[ - "License :: OSI Approved :: MIT License", - "Programming Language :: Python", - "Programming Language :: Python :: 3", - ], - packages=["reader"], - include_package_data=True, - install_requires=["pandas"], - entry_points={}, + app=APP, + data_files=DATA_FILES, + options={'py2app': OPTIONS}, + setup_requires=['py2app'], )