Skip to content

Commit 2061367

Browse files
Merge pull request #11 from jaswinder9051998/development
Development
2 parents 2196eee + fb11c0b commit 2061367

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pandas>=1.3.0
22
numpy~=1.21
3-
scipy=1.4.1
3+
scipy==1.4.1
44
plotly==5.6.0
55
colorlog==6.6.0

setup.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,19 @@ def list_reqs(fname='requirements.txt'):
1212
with open(fname) as fd:
1313
return fd.read().splitlines()
1414

15+
#setup initialization
1516
setup(name='zoofs',
16-
version='0.1.7',
17+
version='0.1.8',
1718
url='https://github.com/jaswinder9051998/zoofs',
1819
author='JaswinderSingh',
1920
author_email='[email protected]',
2021
license='Apache License 2.0',
2122
packages=['zoofs'],
22-
zip_safe=True,
23-
description="zoofs is a Python library for performing feature selection using an variety of nature inspired wrapper algorithms..",
23+
zip_safe=False,
24+
description="zoofs is a Python library for performing feature selection using an variety of nature inspired wrapper algorithms..",
2425
long_description=long_description ,
25-
long_description_content_type='text/markdown',
26+
long_description_content_type='text/markdown',
2627
install_requires=list_reqs(),
28+
include_package_data=True,
2729

2830
)

0 commit comments

Comments
 (0)