Fix pip install too
This commit is contained in:
parent
b79b011d5e
commit
4809de8765
|
@ -0,0 +1,9 @@
|
||||||
|
graft docs
|
||||||
|
|
||||||
|
include COPYING
|
||||||
|
include AUTHORS
|
||||||
|
|
||||||
|
recursive-include src/einsteinpy/tests *.py *.html
|
||||||
|
|
||||||
|
prune docs/source/examples/.ipynb_checkpoints
|
||||||
|
global-exclude *.py[cod] __pycache__ *.so *.dylib
|
|
@ -0,0 +1,5 @@
|
||||||
|
[build-system]
|
||||||
|
requires = [
|
||||||
|
"setuptools",
|
||||||
|
"wheel",
|
||||||
|
]
|
|
@ -0,0 +1,21 @@
|
||||||
|
[tool:pytest]
|
||||||
|
norecursedirs =
|
||||||
|
.git
|
||||||
|
dist
|
||||||
|
build
|
||||||
|
python_files =
|
||||||
|
test_*.py
|
||||||
|
doctest_plus = disabled
|
||||||
|
addopts = --strict
|
||||||
|
markers =
|
||||||
|
slow
|
||||||
|
remote_data
|
||||||
|
filterwarnings
|
||||||
|
|
||||||
|
[pycodestyle]
|
||||||
|
ignore = E731,W504
|
||||||
|
max-line-length = 120
|
||||||
|
|
||||||
|
[flake8]
|
||||||
|
ignore = E731,W504,F401,F841
|
||||||
|
max-line-length = 120
|
1
setup.py
1
setup.py
|
@ -40,7 +40,6 @@ setup(
|
||||||
},
|
},
|
||||||
packages=find_packages("src"),
|
packages=find_packages("src"),
|
||||||
package_dir={"": "src"},
|
package_dir={"": "src"},
|
||||||
entry_points={"console_scripts": ["pytorch-lightning=pytorch-lightning.cli:main"]},
|
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Development Status :: 4 - Beta",
|
"Development Status :: 4 - Beta",
|
||||||
"Intended Audience :: Education",
|
"Intended Audience :: Education",
|
||||||
|
|
Loading…
Reference in New Issue