Skip to content

Commit

Permalink
Merge pull request #24 from rsdefever/fix/setup
Browse files Browse the repository at this point in the history
Prerelease fixes
  • Loading branch information
rsdefever authored Aug 3, 2020
2 parents 490860f + 85915b0 commit a9800dd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
1 change: 0 additions & 1 deletion ele/element.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
JSON_PATH = Path.joinpath(Path(__file__).parent, 'lib/elements.json')

__all__ = (
'Element',
'element_from_name',
'element_from_mass',
'element_from_atomic_number',
Expand Down
12 changes: 3 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,10 @@
from setuptools import setup, find_packages

#####################################
VERSION = "0.0.0"
ISRELEASED = False
if ISRELEASED:
__version__ = VERSION
else:
__version__ = VERSION + ".dev0"
#####################################

requirements = [
]

__version__ = "0.0.0"

setup(
name="ele",
version=__version__,
Expand All @@ -22,4 +15,5 @@
url="https://github.com/rsdefever/ele",
install_requires=requirements,
python_requires=">=3.6, <4",
include_package_data=True
)

0 comments on commit a9800dd

Please sign in to comment.