Skip to content

Commit 3b77207

Browse files
committed
Fix missing datasets package
1 parent 83c0a9a commit 3b77207

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

conda/meta.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,9 @@ build:
1212
script: python setup.py install --single-version-externally-managed --record=record.txt
1313

1414
requirements:
15-
build:
15+
host:
16+
- pip
1617
- python>=3.6
17-
- pytorch
18-
- pandas
1918

2019
run:
2120
- python>=3.6
@@ -25,6 +24,7 @@ requirements:
2524
test:
2625
imports:
2726
- hdc
27+
- hdc.datasets
2828

2929
about:
3030
home: {{ data['url'] }}

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33
https://packaging.python.org/guides/distributing-packages-using-setuptools/
44
https://github.com/pypa/sampleproject
55
"""
6-
from setuptools import setup
6+
from setuptools import setup, find_packages
77

88
setup(
99
name="hdc",
10-
version="0.5.5",
10+
version="0.5.6",
1111
description="Python library for Hyperdimensional Computing",
1212
long_description=open("README.md").read(),
1313
long_description_content_type="text/markdown",
1414
url="https://github.com/mikeheddes/hdc-lib",
1515
license="MIT",
1616
install_requires=open("requirements.txt").readlines(),
17-
packages=["hdc"],
17+
packages=find_packages(exclude=['docs', 'hdc.tests', 'examples']),
1818
python_requires=">=3.6, <4",
1919
project_urls={
2020
"Source": "https://github.com/mikeheddes/hdc-lib/",

0 commit comments

Comments
 (0)