Skip to content

Commit

Permalink
exclude tests and set version to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jic198 committed Jun 25, 2023
1 parent 407a590 commit 7e65fbf
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from setuptools import setup, find_packages
from setuptools import setup, find_namespace_packages


long_desc = """
Expand Down Expand Up @@ -79,8 +79,8 @@

setup(
name="aimsgb",
packages=find_packages(),
version="0.1.3",
packages=find_namespace_packages(exclude=["*.tests"]),
version="1.0.0",
setup_requires=["setuptools>=18.0"],
install_requires=["pymatgen", "mp_api", "numpy", "pytest"],
include_package_data=True,
Expand All @@ -95,11 +95,9 @@
long_description=long_desc,
keywords=["material science", "grain boundary", "molecular simulation"],
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
Expand Down

0 comments on commit 7e65fbf

Please sign in to comment.