Skip to content

Commit

Permalink
renamed elementify.py to __main__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sudoShiba committed Mar 23, 2021
1 parent 6a4e660 commit 61e8966
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 17 deletions.
File renamed without changes.
35 changes: 18 additions & 17 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
"""
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(
app=APP,
data_files=DATA_FILES,
options={'py2app': OPTIONS},
setup_requires=['py2app'],
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={},
)

0 comments on commit 61e8966

Please sign in to comment.