21
21
22
22
AUTHOR = "Kenneth Reitz, Jacobi Petrucciani"
23
23
REQUIRES_PYTHON = ">=3.6.0"
24
- VERSION = "0.4.0 "
24
+ VERSION = "0.4.1 "
25
25
26
26
# What packages are required for this module to be executed?
27
27
REQUIRED = ["delegator.py" ]
39
39
# Import the README and use it as the long-description.
40
40
# Note: this will only work if 'README.md' is present in your MANIFEST.in file!
41
41
try :
42
- with io .open (os .path .join (CURRENT_DIRECTORY , "README.md" ), encoding = "utf-8" ) as f :
42
+ with io .open (
43
+ os .path .join (CURRENT_DIRECTORY , "README.md" ), encoding = "utf-8"
44
+ ) as f :
43
45
LONG_DESCRIPTION = "\n " + f .read ()
44
46
except FileNotFoundError :
45
47
LONG_DESCRIPTION = DESCRIPTION
@@ -74,7 +76,9 @@ def run(self) -> None:
74
76
pass
75
77
76
78
self .status ("Building Source and Wheel (universal) distribution…" )
77
- os .system ("{0} setup.py sdist bdist_wheel --universal" .format (sys .executable ))
79
+ os .system (
80
+ "{0} setup.py sdist bdist_wheel --universal" .format (sys .executable )
81
+ )
78
82
79
83
self .status ("Uploading the package to PyPI via Twine…" )
80
84
os .system ("twine upload dist/*" )
@@ -97,7 +101,7 @@ def run(self) -> None:
97
101
author_email = EMAIL ,
98
102
python_requires = REQUIRES_PYTHON ,
99
103
url = URL ,
100
- packages = find_packages ( exclude = [ "tests" , "*.tests" , "*.tests.*" , "tests.*" ]) ,
104
+ module = 'bash' ,
101
105
install_requires = REQUIRED ,
102
106
extras_require = EXTRAS ,
103
107
include_package_data = True ,
0 commit comments