Skip to content
This repository was archived by the owner on Feb 27, 2023. It is now read-only.

Commit 232115c

Browse files
committed
Fix setup
Signed-off-by: Uilian Ries <uilianries@gmail.com>
1 parent d528e99 commit 232115c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ def get_requires(filename):
3131
def load_version():
3232
"""Loads a file content"""
3333
filename = os.path.abspath(os.path.join(os.path.dirname(os.path.abspath(__file__)),
34-
"bincrafters_conventions", "bincrafters_conventions.py"))
34+
"bintray", "bintray.py"))
3535
with open(filename, "rt") as version_file:
3636
conan_init = version_file.read()
3737
version = re.search("__version__ = '([0-9a-z.-]+)'", conan_init).group(1)
3838
return version
3939

4040
setup(
41-
name='bincrafters_conventions',
41+
name='bintray-python',
4242
# Versions should comply with PEP440. For a discussion on single-sourcing
4343
# the version across setup.py and the project code, see
4444
# https://packaging.python.org/en/latest/single_source_version.html

0 commit comments

Comments
 (0)