Skip to content

Commit

Permalink
Some cleanup in the setup.py (#666)
Browse files Browse the repository at this point in the history
* Some cleanup in the setup.py

* Added requirements to the manifest.
  • Loading branch information
gabrieldemarmiesse authored and JarnoRFB committed Oct 9, 2019
1 parent 84c373a commit 7f0ed16
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 19 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
@@ -1,2 +1,3 @@
include LICENSE.txt
include README.rst
include requirements.txt
14 changes: 7 additions & 7 deletions requirements.txt
@@ -1,8 +1,8 @@
colorama>=0.4.0
docopt>=0.6.2
jsonpickle>=0.9.3
mock>=2.0.0
munch>=2.0.4
pbr>=1.10.0
wrapt>=1.10.8
docopt>=0.3, <1.0
jsonpickle>=0.7.2, <1.0
munch>=2.0.2, <3.0
wrapt>=1.0, <2.0
py-cpuinfo>=4.0
colorama>=0.4
packaging>=18.0
GitPython
15 changes: 3 additions & 12 deletions setup.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# coding=utf-8

import codecs
from pathlib import Path

from setuptools import setup

Expand Down Expand Up @@ -39,18 +39,9 @@
url=about["__url__"],
packages=["sacred", "sacred.observers", "sacred.config", "sacred.stflow"],
scripts=[],
install_requires=[
"docopt>=0.3, <1.0",
"jsonpickle>=0.7.2, <1.0",
"munch>=2.0.2, <3.0",
"wrapt>=1.0, <2.0",
"py-cpuinfo>=4.0",
"colorama>=0.4",
"packaging>=18.0",
"GitPython",
],
install_requires=Path("requirements.txt").read_text().splitlines(),
tests_require=["mock>=0.8, <3.0", "pytest==4.3.0"],
classifiers=list(filter(None, classifiers.split("\n"))),
description="Facilitates automated and reproducible experimental research",
long_description=codecs.open("README.rst", encoding="utf_8").read(),
long_description=Path("README.rst").read_text(),
)

0 comments on commit 7f0ed16

Please sign in to comment.