File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 1
1
pandas >= 1.3.0
2
2
numpy ~= 1.21
3
- scipy =1.4.1
3
+ scipy == 1.4.1
4
4
plotly == 5.6.0
5
5
colorlog == 6.6.0
Original file line number Diff line number Diff line change @@ -12,17 +12,19 @@ def list_reqs(fname='requirements.txt'):
12
12
with open (fname ) as fd :
13
13
return fd .read ().splitlines ()
14
14
15
+ #setup initialization
15
16
setup (name = 'zoofs' ,
16
- version = '0.1.7 ' ,
17
+ version = '0.1.8 ' ,
17
18
url = 'https://github.com/jaswinder9051998/zoofs' ,
18
19
author = 'JaswinderSingh' ,
19
20
20
21
license = 'Apache License 2.0' ,
21
22
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.." ,
24
25
long_description = long_description ,
25
- long_description_content_type = 'text/markdown' ,
26
+ long_description_content_type = 'text/markdown' ,
26
27
install_requires = list_reqs (),
28
+ include_package_data = True ,
27
29
28
30
)
You can’t perform that action at this time.
0 commit comments