Skip to content

Commit 791a45b

Browse files
author
Shyue Ping Ong
committed
More cleanup.
1 parent 3fa4bfe commit 791a45b

File tree

2 files changed

+3
-13
lines changed

2 files changed

+3
-13
lines changed

pyproject.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,6 @@ isort.split-on-trailing-comma = false
7272
"__init__.py" = ["F401"]
7373
"tests/*" = ["D"]
7474
"tasks.py" = ["D"]
75-
"pymatgen/analysis/*" = ["D"]
76-
"pymatgen/vis/*" = ["D"]
77-
"pymatgen/io/*" = ["D"]
78-
"dev_scripts/*" = ["D"]
7975

8076
[tool.pytest.ini_options]
8177
addopts = "--durations=30 --quiet -r xXs --color=yes -p no:warnings --import-mode=importlib"

setup.py

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,17 @@
22

33
from __future__ import annotations
44

5-
from setuptools import find_namespace_packages, setup
5+
from setuptools import setup
66

77
with open("README.md") as file:
88
long_description = file.read()
99

1010
setup(
11-
name="pymatgen",
12-
packages=find_namespace_packages(
13-
include=["pymatgen.*", "pymatgen.analysis.*", "pymatgen.io.*", "pymatgen.ext.*", "cmd_line"],
14-
exclude=["pymatgen.*.tests", "pymatgen.*.*.tests", "pymatgen.*.*.*.tests"],
15-
),
16-
version="2023.7.17",
11+
name="python_template",
12+
version="0.0.1",
1713
python_requires=">=3.8",
1814
install_requires=[],
1915
extras_require={},
20-
# All package data has to be explicitly defined. Do not use automated codes like last time. It adds
21-
# all sorts of useless files like test files and is prone to path errors.
2216
package_data={},
2317
author="Author list",
2418
author_email="[email protected]",

0 commit comments

Comments
 (0)