mirror of
https://github.com/KevinMidboe/delugeClient.git
synced 2025-12-09 04:28:42 +00:00
Moved __version__ to separate file
This commit is contained in:
9
setup.py
9
setup.py
@@ -5,9 +5,16 @@ import delugeClient
|
||||
with open("README.md", "r", encoding="utf-8") as fh:
|
||||
long_description = fh.read()
|
||||
|
||||
exec(open('delugeClient/__version__.py').read())
|
||||
|
||||
setup(
|
||||
name="delugeClient-kevin",
|
||||
version=delugeClient.__version__,
|
||||
version=__version__,
|
||||
packages=find_packages(),
|
||||
package_data={
|
||||
'delugeClient': ['default_config.ini'],
|
||||
},
|
||||
python_requires=">=3.6",
|
||||
author="KevinMidboe",
|
||||
description="Deluge client with custom functions written in python",
|
||||
long_description=long_description,
|
||||
|
||||
Reference in New Issue
Block a user