Skip to content

Commit

Permalink
Revert "renamed elementify.py to __main__.py"
Browse files Browse the repository at this point in the history
This reverts commit 61e8966.
  • Loading branch information
sudoShiba committed Mar 23, 2021
1 parent 61e8966 commit 474e174
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 18 deletions.
File renamed without changes.
35 changes: 17 additions & 18 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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="[email protected]",
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'],
)

0 comments on commit 474e174

Please sign in to comment.