Skip to content

Commit

Permalink
fix: Resolve issue where ardl is not installed correctly (#24)
Browse files Browse the repository at this point in the history
* Update setup.py

* Update __init__.py

* fix: use find_package in setup

* Update

* cleanup PR
  • Loading branch information
titom73 authored Feb 15, 2023
1 parent 69e4156 commit ceff1c6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
recursive-include eos_downloader *
2 changes: 1 addition & 1 deletion eos_downloader/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
__date__ = '2022-03-16'
__version__ = '0.7.1'

__all__ = ["CvpAuthenticationItem", "CvFeatureManager", "EOSDownloader", "ObjectDownloader", "reverse", "cli"]
__all__ = ["CvpAuthenticationItem", "CvFeatureManager", "EOSDownloader", "ObjectDownloader", "reverse"]

ARISTA_GET_SESSION = "https://www.arista.com/custom_data/api/cvp/getSessionCode/"

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/python
# coding: utf-8 -*-

from setuptools import setup
from setuptools import setup, find_packages
from pathlib import Path
import eos_downloader

Expand All @@ -17,7 +17,8 @@
name="eos_downloader",
version="{}".format(eos_downloader.__version__),
python_requires=">=3.8",
packages=['eos_downloader'],
packages=find_packages(),
include_package_data=True,
scripts=["bin/eos-download", "bin/cvp-upload"],
entry_points={
'console_scripts': [
Expand All @@ -26,7 +27,6 @@
]
},
install_requires=required,
include_package_data=True,
url="https://github.com/titom73/arista-downloader",
license="APACHE",
author="{}".format(eos_downloader.__author__),
Expand Down

0 comments on commit ceff1c6

Please sign in to comment.