File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,9 @@ build:
1212 script : python setup.py install --single-version-externally-managed --record=record.txt
1313
1414requirements :
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:
2524test :
2625 imports :
2726 - hdc
27+ - hdc.datasets
2828
2929about :
3030 home : {{ data['url'] }}
Original file line number Diff line number Diff line change 33https://packaging.python.org/guides/distributing-packages-using-setuptools/
44https://github.com/pypa/sampleproject
55"""
6- from setuptools import setup
6+ from setuptools import setup , find_packages
77
88setup (
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/" ,
You can’t perform that action at this time.
0 commit comments